0
我想問如果我想限制ImageView在Android中的位置,應該怎麼做?當圖片在水平位置加載時,可以,但是當我以垂直位置加載圖片時,照片疊加在圖標上。 我的codeView ImageView:在垂直位置將圖像加載到ImageView中,但不會在Android圖標上疊加圖標
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:adjustViewBounds="true"
android:scaleType="fitStart"
android:src="@drawable/sample" />
我該如何修復它?