有时候我们自定义一个view,比如imageview,我们需要让它宽高按照一定的比例显示,例如在imageview在gridview中显示,gridview设置了3列,由于imageview的宽度会根据屏幕的大小进行缩放的,如果不设置高度与宽度成一定比例的话,那么可能会由于屏幕大小的变化而让imageview的宽高比例失调。

那么怎么做到让高度根据宽度的改变而成比例改变呢?

重写imageview的onmesure()方法:

@override

protected void onmeasure(int widthmeasurespec, int heightmeasurespec) {

if (ratioheight > 0 && ratiowidth > 0) {

int originalwidth = measurespec.getsize(widthmeasurespec);

int calculatedheight = originalwidth * ratioheight / ratiowidth;

super.onmeasure(

measurespec.makemeasurespec(originalwidth, measurespec.exactly),

measurespec.makemeasurespec(calculatedheight, measurespec.exactly));

} else {

super.onmeasure(widthmeasurespec, heightmeasurespec);

}

}

originalwidth * ratioheight / ratiowidth;便是宽高比例。

我们可以自定义属性

ratioheight与ratiowidth

然后我们可以在布局当中写上(假如设定宽高比例为1:2的话)

ratiowidth:1

ratioheight:2

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐