我的主要 Activity 有许多按钮,它们在大平板电脑屏幕上彼此下方,但在较小的手机屏幕上却不适合。我添加了一个 ScrollView,以便用户可以在屏幕大小需要时向下滚动到其他按钮:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:background="@drawable/bg"
android:gravity="center_horizontal">
<TextView
android:id="@+id/trackSelectorText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center_horizontal"/>
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:gravity="center_horizontal">
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="foo" />
<!-- More buttons -->
</LinearLayout>
</ScrollView>
</LinearLayout>
这有点工作,但是我在最后一个按钮下方有一个很大的空白区域(即 ScrollView 可以向下滚动太远)。无论是在实际平板电脑上还是在具有电话配置的模拟器上。如果我center
是内部的 LinearLayout (而不是center_horizontal
),则空间在顶部和底部之间均匀分布,我也不想要。如何修复此布局?
我希望这张图片更清楚,想象一下 ScrollView 已经完全向下滚动并显示最后一个按钮。我的意思是右图按钮 6下方的空白区域: