-1
我想調整應用程序的佈局。 首先在Android設計即時通訊新。 我在scrollview中做了一個線性佈局。 但是,當調整佈局時,圖像之間會有太多空間。我想擺脫這一點。調整圖像視圖的佈局
圖像的寬度應與手機的顯示寬度相同。高度必須自動調整。
XML代碼如下所示。 評論我,如果問題不明確。
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/scrollView">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
tools:context=".MainActivity">
<ImageView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:src="@drawable/sldr4" />
<ImageView
android:layout_height="wrap_content"
android:layout_width="fill_parent"
android:src="@drawable/sldr4" />
</LinearLayout>
</ScrollView>