android – 将ID数据附加到listview项目

前端之家收集整理的这篇文章主要介绍了android – 将ID数据附加到listview项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个应用程序,它在服务器上提取存储为xml文件的公告,并将每个公告的标题和作者加载到ListView项目中.每个项目我还需要存储的是每个公告的ID,但实际上我不需要显示它.我想可能将ID存储在我用来填充列表的哈希映射中,然后找到点击标题的关联ID,但我认为使用它是不安全的,因为两个公告可能具有相同的标题(以及作者和日期) .我还想过为每个项添加一个不可见的TextView来存储ID,但这会导致布局问题.最后,我搜索了一下,发现了setTag()和getTag(),我觉得这对我想做的事情很完美,但我不确定如何在SimpleAdapter中使用它们(我对这个比较新… ).如果TextView的想法是我需要做的(虽然我对此表示怀疑),这里是我为每个项目使用的布局:
<?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="wrap_content"
    android:orientation="vertical" >

    <TextView
      android:id="@android:id/text1"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"
      android:layout_marginLeft="6dip"
      android:textAppearance="?android:attr/textAppearanceMedium"/>
    <LinearLayout 
        android:orientation="horizontal"
        android:id="@+id/items"
        android:weightSum="100"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content">
        <TextView
          android:id="@android:id/text2"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_marginLeft="6dip"
          android:textAppearance="?android:attr/textAppearanceSmall"
          android:layout_weight="85"/>
        <LinearLayout 
            android:orientation="vertical"
            android:id="@+id/itemCB"
            android:layout_weight="15"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:gravity="center">
            <CheckBox
                android:id="@+id/cbSelected"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />
        </LinearLayout>
    </LinearLayout>
</LinearLayout>

我正在使用以下适配器来填充列表:

for(int i = 0; i < ann.length; i++)
{
    map = new HashMap<String,String>();
    map.put("line1",ann[i].getTitle());
    map.put("line2","Posted by: " + ann[i].getAuthor() + "\n" + ann[i].date.toLongString());
    list.add(map);
}
String[] from = { "line1","line2"};

int[] to = { android.R.id.text1,android.R.id.text2};

SimpleAdapter adapter = new SimpleAdapter(this,list,R.layout.twoline_checkBox_id_listitem,from,to);
setListAdapter(adapter);

感谢您的任何帮助!

解决方法

从理论上讲,你可以做任何一种方法,它可能会没有问题.从长远来看,我会说你会更好用一个简单的实体对象和一个自定义适配器.更具体地说,从它的外观来看,我会选择一个ArrayAdapter,你似乎已经在为数组ann使用某种简单的实体对象.

有很多示例可以向您展示如何扩展ArrayAdapter.然而,最重要的部分是getView()方法,它最基本的形式可能看起来像这样:

public View getView(int position,View convertView,ViewGroup parent) {
    View row;
    if (null == convertView) {
        row = mInflater.inflate(R.layout.list_item,null);
    } else {
        row = convertView;
    }

    MyObject item = (MyObject) getItem(position);

    TextView tv = (TextView) row.findViewById(android.R.id.xxx);
    tv.setText(item.getTitle);

    // same for other fields/views; e.g. author,date etc

    return row;
}

现在创建一个SimpleAdapter实例,然后创建一个实体对象的数组(或列表),并将整个设置为适配器到列表中,而不是创建一个SimpleAdapter:

MyObject[] objects = ...
setListAdapter(new ArrayAdapter<string>(this,R.layout.list_item,objects));

由于您现在直接处理对象,而不是首先在不同的字段中创建一堆字符串表示,您还可以轻松访问每个项目的“id”.更好的是,您可以添加大量不同的字段而不必担心它在列表中的外观,因为可视化表示由您在适配器的getView()方法中设置(并且未设置)的内容决定.

原文链接:https://www.f2er.com/android/316097.html

猜你在找的Android相关文章