我想在列表视图中添加一个View op top(让我们称之为标题)。当用户向下滚动时,我希望所有内容都向上移动(包括标题)。但是现在当用户滚动时,标题保持固定在顶部(如在css中的“position:fixed”),而不是滚动其余的内容。
如何让用户滚动所有内容而不仅仅滚动ListView的内容?
这就是我现在的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="?attr/color2">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/header"
style="@style/header"
android:drawableLeft="@drawable/ic_setup"
android:text="@string/fragment_contacts"/>
<ListView android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:drawSelectorOnTop="false"
android:fastScrollEnabled="false">
</ListView>
</LinearLayout>
答案 0 :(得分:5)
<强> my_layout_header.xml 强>
这是列表标题的XML布局。
<?xml version="1.0" encoding="utf-8"?>
<TextView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableLeft="@drawable/ic_setup"
android:text="@string/fragment_contacts" />
<强> my_layout.xml 强>
这是主要布局。
<?xml version="1.0" encoding="utf-8"?>
<ListView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@android:id/list"
android:drawSelectorOnTop="false"
android:fastScrollEnabled="false" />
代码
现在您需要将标题布局XML扩展为View
并将其设置为ListView
的标题视图。以下代码段可以在Activity.onCreate(Bundle)
:
setContentView(R.layout.my_layout);
View header = View.inflate(this, R.layout.my_layout, null);
// where "this" is a context / activity...
ListView list = (ListView)findViewById(android.R.id.list);
list.addHeaderView(header, null, false); // header will not be clickable
// ... whatever else you need to do AFTER you set a header (a bug before KITKAT) ...