我想要一个宽度=fill_parent 的 ImageView,高度应该是宽度。我不确定是否有办法在 xml 中指定它,是创建我自己的 ImageView 派生类的唯一选择吗?:
public class MyImageView extends ImageView {
// Just return whatever the current width is?
private int measureHeight(int measureSpec) {
return getWidth();
}
}
这是要走的路,还有其他选择吗?(我不确定上述是否正确,例如不确定宽度测量是否发生在高度测量之前)
谢谢