我需要像这个图像一样为肖像模式创建ImageView:
但无论我做什么,我得到的结果如下:
EDITED
来自第三张图片的XML
示例
<ImageView
android:id="@+id/image"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="centerCrop"
android:adjustViewBounds="true"
android:layout_gravity="start"
android:src="@drawable/background" />
答案 0 :(得分:1)
可能导致此问题的可能性很小。您要么为图像设置了边距(边距顶部和底部)。或者父布局有一个填充(也是顶部和底部)。
您只需要删除此填充或边距,以便视图填充父布局。
还有另一种可能性,通过查看您的代码 - 可能是问题。您可能希望使用android:background
属性而不是android:src