我的布局中有一个 imageView,它用作不缩放的背景。但我需要将我的图像放在屏幕的右上角。我现在在屏幕的左上角有我的图像。这是我的 imageview 的 xml:
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentRight="true"
android:src="@drawable/achtergrond"
android:scaleType="fitCenter" />
我还尝试将它放在具有重力=“顶部|右”的线性布局中,但这不会删除图片周围的空白,因为它具有 match_parent 大小。我还需要保持图片的比例,所以不能做fill_parent。
我希望有人可以帮助我!