ListView标头不滚动

时间:2013-04-25 06:34:39

标签: android

我使用标题实现了listView

但是,当我滚动页眉布局时,页面不会向下滚动(滚动不会向下滚动页面)。

但是,当我滚动listView(位于页眉布局底部)时,页面向下滚动,标题也会消失(如预期的那样)。

当我向下滚动标题布局时,我可以实现这一点,页面会scroll downlistView吗?

这是我的代码:

 LayoutInflater inflater = getLayoutInflater();
        View header = inflater.inflate(R.layout.freinds_listview_header, (ViewGroup) findViewById(R.id.freind_header_layout_root));
        listView.addHeaderView(header, null, false);

2 个答案:

答案 0 :(得分:0)

请检查

    LayoutInflater inflater; = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View header = inflater.inflate(R.layout.freinds_listview_header, null);
    listView.addHeaderView(header);

希望有所帮助......

答案 1 :(得分:-1)

ListView标头不应该随滚动数据一起浮动,这意味着,根据定义,标题视图保持不变,列表顶部就像列表的特殊第一行一样。

如果你想创建一个在用户滚动列表时向下滚动的浮动视图,你应该在列表视图旁边的布局中创建它,如下所示:

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <View
        android:id="@+id/headerView"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true"
        android:background="@drawable/my_background_image" />

    <ListView
        android:id="@+id/listView"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_below="@+id/headerView" />
</RelativeLayout>