我想调整应用程序的布局。 首先是我在Android设计中的新功能。 我在scrollview中做了一个linearlayout。 但是在调整布局时,图像之间会有很多空间。我想摆脱它。
图像的宽度应与手机的显示宽度相等。高度必须自动调整。
下面列出了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>