0

我通过扩展 ListActivity 来填充列表。我在列表中添加了一个标题以显示列表中项目的总数。

我在单独的布局文件 header.xml 中维护了标题视图,如下所示。

<LinearLayout  xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" >
    <TextView 
        android:id="@+id/headerTextView"
        android:layout_width="fill_parent" 
        android:layout_height="wrap_content"
        android:text="Total number of devices :" 
        android:textSize="15dip"
        android:layout_weight="1" />
</LinearLayout>

这就是我在 ListViewActivity 类的列表中添加标题的方式,

ListView lv = getListView();
LayoutInflater inflater = getLayoutInflater();
ViewGroup header = (ViewGroup)inflater.inflate(R.layout.header, lv, false);
lv.addHeaderView(header, null, false);

如何设置标题 TextView 的文本?我尝试了以下操作,它为 TextView 返回了 null。

TextView textBox = (TextView)findViewById(R.id.);
  textBox.setText("Count");
4

1 回答 1

4

尝试这个

View header = (View)inflater.inflate(R.layout.header, lv, false);
lv.addHeaderView(header, null, false);

在标题中获取您的 TextView

TextView textBox = (TextView)header.findViewById(R.id.headerTextView);
于 2013-05-11T13:16:14.600 回答