编辑:部分答案
如果在 xml 中设置了两个维度,则它的行为与预期一样,例如
android:layout_width="250dp"
android:layout_height="250dp"
如果将一个留给 wrap_content,则不会。
原帖
这是我的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:orientation="horizontal" >
<ImageView
android:id="@+id/board"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/board" />
</LinearLayout>
为什么我在屏幕上看到的图像具有正确的尺寸(屏幕高度 x 屏幕高度,因为它是一个方形位图并且我将 match_parent 设置为高度),但是如果我调用 ImageView.getWidth() 和 ImageView.getHeight() 它给了我屏幕尺寸?
最好的祝福