我需要在listview中添加标题,标题应始终显示为滚动列表。
可以在android列表视图中使用吗?
答案 0 :(得分:6)
您可以在列表视图中添加标题,如下所示:
View headerView = ((LayoutInflater)Activity.this.getSystemService(Activity.this.LAYOUT_INFLATER_SERVICE)).inflate(R.layout.header, null, false);
list.addHeaderView(headerView)
答案 1 :(得分:6)
对我有用的解决方案是创建一个TableLayout,其中包含一个带有标题的行和一个带有列表的行,如下所示:
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include layout="@layout/header" />
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
</TableLayout>
请确保ListView具有@android:id / list作为ID。
答案 2 :(得分:3)
是的,这就是我所做的:
对于ListActivity
或ListFragment
的自定义布局,您的布局必须包含ListView
,android:id
属性设置为@android:id/list
。
1)main_layout.xml
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
// custom Headers
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" >
<TextView
android:id="@+id/textView1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:gravity="center"
android:text="@string/systolic" />
<TextView
android:id="@+id/textView2"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:gravity="center"
android:text="@string/diastolic" />
<TextView
android:id="@+id/textView3"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_vertical"
android:layout_weight="1"
android:gravity="center"
android:text="@string/date" />
</LinearLayout>
// This is important to be exactly like below ,android:id="@android:id/list"
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/linearLayout1" >
</ListView>
</RelativeLayout>
对于每行列表的自定义布局,
2)custom_list_row.xml
:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<TextView
android:id="@+id/bpSysHolder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:layout_gravity="center_vertical"
android:text="TextView" >
</TextView>
<TextView
android:id="@+id/bpDiaHolder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:layout_gravity="center_vertical"
android:text="TextView" >
</TextView>
<TextView
android:id="@+id/bpDtHolder"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="center"
android:layout_gravity="center_vertical"
android:text="TextView" >
</TextView>
</LinearLayout>
3)ListActivity
:
public class HistoryActivity extends ListActivity {
private SimpleCursorAdapter dbAdapter;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// this is neccessery for you
setContentView(R.layout.main_layout);
dao = new BpDAO(this);
Cursor bpList = dao.fetchAll_bp();
String[] from = new String[] { BpDAO.bp_SYS, BpDAO.bp_DIA, BpDAO.bp_DT };
int[] target = new int[] { R.id.bpSysHolder, R.id.bpDiaHolder,
R.id.bpDtHolder };
// And this for custom row layout for each list row
dbAdapter = new SimpleCursorAdapter(this, R.layout.custom_list_row,
bpList, from, target);
setListAdapter(dbAdapter);
}
@Override
protected void onDestroy() {
super.onDestroy();
dao.close();
}
@Override
public void onListItemClick(ListView l, View view, int position, long id) {
// TODO something on item click
}
}
如果您需要,请检查:“Attaching a sticky (fixed) header/footer to a listview”
答案 3 :(得分:0)
做一件事。将一个TextView放在列表视图的正上方,并将文本设置为标题。它将满足您的需求。