使视图可滚动,因为隐藏文本
Make View Scrollable because hidden text
我有一个 Activity,屏幕上有 2 个垂直的 LinearLayouts,右下角有 1-2 个按钮。
根据 LinearLayouts 的长度,可能会发生布局中的文本对按钮隐藏的情况。因此,我想让 Activity 始终可滚动,以便用户能够将 LinearLayouts 向上拖动一点并阅读文本。
这是一个小可视化:
我尝试了一些在网上找到的解决方案,但它不起作用:
第一次尝试:
<ConstraintLayout>
<LinearLayout>...</LinearLayout>
<LinearLayout>...</LinearLayout>
<Button>...</Button>
<ConstraintLayout>
第二次尝试:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout>...</LinearLayout>
<LinearLayout>...</LinearLayout>
</LinearLayout>
</ScrollView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<Button .... />
</RelativeLayout>
</RelativeLayout>
尝试添加填充底部
<LinearLayout
android:padding_bottom="50dp"
/>
我有一个 Activity,屏幕上有 2 个垂直的 LinearLayouts,右下角有 1-2 个按钮。
根据 LinearLayouts 的长度,可能会发生布局中的文本对按钮隐藏的情况。因此,我想让 Activity 始终可滚动,以便用户能够将 LinearLayouts 向上拖动一点并阅读文本。
这是一个小可视化:
我尝试了一些在网上找到的解决方案,但它不起作用:
第一次尝试:
<ConstraintLayout>
<LinearLayout>...</LinearLayout>
<LinearLayout>...</LinearLayout>
<Button>...</Button>
<ConstraintLayout>
第二次尝试:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout>...</LinearLayout>
<LinearLayout>...</LinearLayout>
</LinearLayout>
</ScrollView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true">
<Button .... />
</RelativeLayout>
</RelativeLayout>
尝试添加填充底部
<LinearLayout
android:padding_bottom="50dp"
/>