使视图可滚动,因为隐藏文本

时间:2018-11-15 18:06:03

标签: android android-layout scrollable

我有一个Activity,在屏幕上垂直有2个LinearLayouts,在右下角有1-2个按钮。

根据LinearLayouts的长度,可能会发生布局中的文本从Button隐藏的情况。因此,我想使Activity始终可滚动,以使用户能够向上拖动LinearLayouts并读取文本。

这里有点可视化:

enter image description here

我尝试了一些我在网络上找到的解决方案,但无法正常工作:

第一次尝试:

<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>

1 个答案:

答案 0 :(得分:1)

尝试添加填充底部

<LinearLayout
            android:padding_bottom="50dp"
            />