垂直滚动视图

时间:2019-04-13 04:46:03

标签: android android-layout

我已经创建了一个列表菜单,看来我的菜单列表充满了我的页面。我想使菜单页面可滚动。因此,我可以清楚地看到它,而无需进行任何切割。我已经尝试过使用,但是根本没有用。

这是我的页面示例:

enter image description here

这是我的代码示例:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
   android:orientation="vertical"
   android:padding="10dp"
   android:background="@color/system"
   tools:context=".MainActivity">

<LinearLayout
    android:clipToPadding="false"
    android:gravity="center"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content">
    <android.support.v7.widget.CardView

        android:layout_width="100dp"
        android:layout_height="190dp">
        <LinearLayout

            android:gravity="center"
            android:orientation="vertical"
            android:background="@color/system"
            android:layout_width="match_parent"
            android:layout_height="match_parent">
            <ImageView
                android:background="@drawable/ocean"
                android:src="@drawable/ic_document"
                android:padding="10dp"
                android:layout_width="50dp"
                android:layout_height="50dp" />
            <TextView
                android:textColor="@color/application"
                android:id="@+id/survey"
                android:text="SURVEY"
                android:textStyle="bold"
                android:layout_marginTop="10dp"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
            <View
                android:background="@color/gray"
                android:layout_margin="10dp"
                android:layout_width="match_parent"
                android:layout_height="1dp"/>

        </LinearLayout>
    </android.support.v7.widget.CardView>
    </LinearLayout>

是否有任何想法如何实现滚动视图,或者使我的菜单可以滚动的其他任何方法?

1 个答案:

答案 0 :(得分:0)

在您的xml文件中添加滚动视图,如下所示:-

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    android:orientation="vertical"
    android:padding="10dp">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

    <LinearLayout
        android:clipToPadding="false"
        android:gravity="center"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">
        <android.support.v7.widget.CardView

            android:layout_width="100dp"
            android:layout_height="190dp">
            <LinearLayout

                android:gravity="center"
                android:orientation="vertical"
                android:background="@color/system"
                android:layout_width="match_parent"
                android:layout_height="match_parent">
                <ImageView
                    android:background="@drawable/ocean"
                    android:src="@drawable/ic_document"
                    android:padding="10dp"
                    android:layout_width="50dp"
                    android:layout_height="50dp" />
                <TextView
                    android:textColor="@color/application"
                    android:id="@+id/survey"
                    android:text="SURVEY"
                    android:textStyle="bold"
                    android:layout_marginTop="10dp"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />
                <View
                    android:background="@color/gray"
                    android:layout_margin="10dp"
                    android:layout_width="match_parent"
                    android:layout_height="1dp"/>

            </LinearLayout>
        </android.support.v7.widget.CardView>
    </LinearLayout>

    </ScrollView>
</LinearLayout>

如果使用的是回收站视图,它将自动滚动其他视图,然后您必须在xml文件中使用用户滚动视图。