在滚动页面时,如何使子菜单在android中保持不变

时间:2013-10-18 18:28:14

标签: android menu scrollview

有点像android中的facebook页面如何将标签栏保持在标题栏上并在向下滚动时返回滚动视图。我可以用什么来构建它?

1 个答案:

答案 0 :(得分:0)

只是不要在滚动视图中包含要保留的视图。像这样:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >
    <LinearLayout 
        android:id="@+id/buttons"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:weightSum="2"
        android:layout_alignParentTop="true" >
        <ToggleButton
            android:id="@+id/receivedTasksButton"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@drawable/task_type_button"
            android:textColor="#FFFFFF"
            android:textOff="Received"
            android:textOn="Received"
            android:checked="true" />
        <ToggleButton
            android:id="@+id/sentTasksButton"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:background="@drawable/task_type_button"
            android:textColor="#FFFFFF"
            android:textOff="Sent"
            android:textOn="Sent" />
    </LinearLayout>
    <ScrollView
        android:id="@+id/tasklistscrollview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/buttons"
        android:layout_above="@+id/newTaskButton" >

        <LinearLayout
            android:id="@+id/taskList"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

        </LinearLayout>
    </ScrollView>
        <Button
        android:id="@+id/newTaskButton"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:layout_alignParentRight="true"
        android:background="@drawable/newrecording" />


</RelativeLayout>