我需要知道 ImageView 的宽度和高度。有没有办法在片段中测量它?在标准活动中,我使用这个:
@Override
public void onWindowFocusChanged(boolean hasFocus) {
super.onWindowFocusChanged(hasFocus);
image.getWidth();
image.getHeight();
}
但是我可以在哪里使用image.getWidth();
和image.getHeight();
片段?