3

我使用 simpleadapter 和 hashmap 填充了一个 listview(4columns)。现在我想让列表视图的每一列都有一个名字。

我的列表视图显示在具有 4 个文本视图的线性布局中。

现在,为了获得每列的属性名称,我尝试使用 2 个线性布局,顶部线性布局有 4 个带有属性名称的文本视图,底部线性布局带有来自 simpleadapter 的数据。并将两个线性布局放在另一个线性布局中。

这并没有按我想要的方式工作......我对android还很陌生,请帮忙。

编辑:

这是我的代码:

公共类 MultiList 扩展 ListActivity {

ListView lv;
SimpleAdapter sd;


@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    Calendar c = Calendar.getInstance();
    lv = getListView();
    ArrayList<HashMap<String, String>> aList = new ArrayList<HashMap<String,String>>();
    HashMap<String, String> map = new HashMap<String, String>();
    map.put("Date", ""+c.get(Calendar.DATE));
    map.put("Month", ""+c.get(Calendar.MONTH)+1);
    map.put("Time", "" + new Date().toString());
    aList.add(map);
    map = new HashMap<String, String>();
    map.put("Date", ""+c.get(Calendar.DATE));
    map.put("Month", ""+c.get(Calendar.MONTH)+1);
    map.put("Time", "" + new Date().toString());
    aList.add(map);
    map = new HashMap<String, String>();
    map.put("Date", ""+c.get(Calendar.DATE));
    map.put("Month", ""+c.get(Calendar.MONTH)+1);
    map.put("Time", "" + new Date().toString());
    aList.add(map);
    sd= new SimpleAdapter(this, aList, R.layout.main, new String[]{"Date","Month","Time"}, new int[]{R.id.studentID,R.id.studentAge,R.id.studentName});
    lv.setAdapter(sd);



   // insertData();


}

我的 main.xml

<?xml version="1.0" encoding="UTF-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/linear1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal"
        android:paddingBottom="6dip"
        android:paddingTop="4dip" >

        <TextView
            android:layout_width="90dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="student ID" />

        <TextView
            android:layout_width="90dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="student Age" />

        <TextView
            android:layout_width="90dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="student Name" />
    </LinearLayout>

    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/linear1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="horizontal"
        android:paddingBottom="6dip"
        android:paddingTop="4dip" >

        <TextView
            android:id="@+id/studentID"
            android:layout_width="90dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
             />

        <TextView
            android:id="@+id/studentAge"
            android:layout_width="90dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
           />

        <TextView
            android:id="@+id/studentName"
            android:layout_width="90dip"
            android:layout_height="wrap_content"
            android:layout_weight="1"
             />
    </LinearLayout>

</LinearLayout>

问题是,每个属性名称(学生 ID、学生年龄、学生姓名)在每一行都重复。我该如何解决?

4

1 回答 1

3

将您的布​​局分成两部分,第一个将具有列标题。我们称之为header.xml

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linear1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal"
    android:paddingBottom="6dip"
    android:paddingTop="4dip" >

    <TextView
        android:layout_width="90dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="student ID" />

    <TextView
        android:layout_width="90dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="student Age" />

    <TextView
        android:layout_width="90dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="student Name" />
</LinearLayout>

第二个只是针对每一行,称为row.xml

<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/linear1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="horizontal"
    android:paddingBottom="6dip"
    android:paddingTop="4dip" >

    <TextView
        android:id="@+id/studentID"
        android:layout_width="90dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
         />

    <TextView
        android:id="@+id/studentAge"
        android:layout_width="90dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
       />

    <TextView
        android:id="@+id/studentName"
        android:layout_width="90dip"
        android:layout_height="wrap_content"
        android:layout_weight="1"
         />
</LinearLayout>

(你可以稍后给他们起更好的名字。)

现在你的 onCreate() 应该有这个:

// Set up your header
lv.addHeaderView(getLayoutInflater().inflate(R.layout.header, null, false));

// Change the resource id to R.layout.row
sd = new SimpleAdapter(this, aList, R.layout.row, new String[]{"Date","Month","Time"}, new int[]{R.id.studentID,R.id.studentAge,R.id.studentName});
lv.setAdapter(sd);
于 2012-07-22T17:28:36.137 回答