我有一個圖像視圖變成Relativelayout
,我從圖庫中挑選圖像..問題是Imageview
高度太大,相對佈局父級高度變得與高度Imageview
相同,我需要從圖庫中選擇圖像並將其精確顯示到相對佈局中。android imageview進入相對佈局設置高度
我下面的代碼
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<ImageView
android:id="@+id/image_view"
android:layout_margin="5dp"
android:layout_alignParentEnd="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:scaleType="fitStart"
android:adjustViewBounds="true"
android:src="@drawable/crayon" />
</RelativeLayout>
你想要什麼到底是什麼? – tahsinRupam
嘗試使用'android:scaleType =「fitXY」'.. – rafsanahmad007
我想讓imageview高度完全適合相對佈局高度,而不是更大 – Malo