如何确定 Scaled ImageView 的尺寸?我尝试使用 getWidth() & getHeight 它总是返回 0。我的 ImageView 的 xml 布局如下:
<ImageView
android:id="@+id/imgView"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:adjustViewBounds="true"
android:scaleType="fitXY"
android:src="@drawable/my_image" />
请提出一些建议。