2

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

4

1 回答 1

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>
于 2013-10-18T18:35:20.860 回答