滚动Android中的活动中的所有元素

时间:2013-08-05 13:35:58

标签: java android xml layout

我在Android中有一个带有两个主要视图的活动:带有一些文本框的标题布局,以及一个视图组,它是不等高度元素网格的自己实现。如图所示:

enter image description here

我希望不仅可以滚动视图中的元素,还可以滚动整个活动。我无法使用setHeaderView作为列表,因为它不是ListView,它是ViewGroup的子类。我无法做到这一点: - (

以下是我尝试使用的代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="#E0E0DE"
    tools:context=".MainActivity" >

    <include
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        layout="@layout/layout_action_bar" />

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true" >

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical"
            android:paddingBottom="@dimen/activity_vertical_margin"
            android:paddingLeft="@dimen/activity_horizontal_margin"
            android:paddingRight="@dimen/activity_horizontal_margin"
            android:paddingTop="@dimen/activity_vertical_margin" >

            <RelativeLayout
                android:layout_width="match_parent"
                android:layout_height="200dp" >

                <ImageView
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:src="@drawable/background"
                    android:scaleType="centerCrop"
                    android:adjustViewBounds="true" />

                <include
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    layout="@layout/layout_search_view"
                    android:layout_centerInParent="true"
                    android:layout_marginLeft="20dp"
                    android:layout_marginRight="20dp" />

            </RelativeLayout>

            <include
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                layout="@layout/layout_location_info" />

            <com.tenea.turipolis.UnequalGridView
                android:id="@+id/listPictures"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:scrollbars="vertical"
                android:columnCount="2"
                android:padding="2dp"
                android:verticalSpacing="2dp"
                android:horizontalSpacing="2dp" />

        </LinearLayout>

    </ScrollView>

</LinearLayout>

感谢您的支持,

2 个答案:

答案 0 :(得分:2)

使用ScrollView围绕整个布局。

答案 1 :(得分:0)

将您的布局包裹在:

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

// your layout here

</ScollView>

您只能拥有一个子窗口小部件,例如:

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

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" >

    // your layout here

    </LinearLayout>

</ScollView>