0
我有一個從數據庫填充的ImageView(圖像來自數據庫)。在數據庫中我有圖像肖像和風景!我如何調整imageView根據圖像的寬度和高度自行調整它。我嘗試了很多方法,但沒有結果!任何幫助,請!android imageView scale
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/slideshow"
android:orientation="horizontal"
android:padding="0dp"
>
<ImageView
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginRight="5dp"
android:id="@+id/slide1"
android:src="@drawable/ddd"
/>
使用'android:layout_width =「wrap_content」android:layout_height =「wrap_content」' –
爲什麼在RelativeLayout裏面有一個LinearLayout? –
使用wrap_content爲relativelayout和imageview – Srijith