当ListView滚动顶部栏应该保持在顶部而ListView只能滚动

时间:2013-06-14 07:51:06

标签: android android-listview

我想在我的应用程序中创建这种类型的视图。我知道你们中的任何人都遇到过这个问题.. enter image description here请指导我如何在Android中制作这种类型的视图(屏幕)......

1 个答案:

答案 0 :(得分:0)

请尝试使用以下代码我希望解决您的问题。

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="1"
    android:orientation="horizontal"
    android:weightSum="3" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="LinearLayout1" />
    </LinearLayout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="LinearLayout2" />
    </LinearLayout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="LinearLayout3" />
    </LinearLayout>
</LinearLayout>

<ListView
    android:layout_width="match_parent"
    android:layout_height="0dip"
    android:layout_weight="9" >
</ListView>