将ID数据附加到listview项目

时间:2011-12-30 01:53:45

标签: android

我有一个应用程序,它在服务器上获取存储为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);

感谢您的帮助!

2 个答案:

答案 0 :(得分:4)

我只想详细解释一下MH的答案 在myArrayAdapter功能的getView课程中,您可以将您的ID分配给View(实际上意味着&#34;行&#34;),如下所示:

public View getView(int position, View convertView, ViewGroup parent){

    View v = convertView;

    if (v == null) {
        LayoutInflater inflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        v = inflater.inflate(mItemLayout, null);
    }

    String[] dataForOneRow = this.allRowsData.get(position);

    // Tag is expected to be an Object (Integer is an object)
    // our data are in String array - that's why we need to convert it into Integer
    // I assume here, your ID number is first item (No.0) in the array of data
    v.setTag(new Integer( Integer.valueOf(dataForOneRow[0]) ));

    /* 
    ...here you will set your data to display in your TextViews...
    */

    return v;
}

然后,当(例如)用户点击该行并且将开始一些详细的Activity时,您需要知道该行的ID。

我在ListView中有Fragment这是我的主Activity中的代码段,来自Fragment的声明,放在函数{{}中1}}:

onCreateView

最后这里是我的DetailActivity的// here we assign "onClick listener" when user clicks a row myListView.setOnItemClickListener(new AdapterView.OnItemClickListener() { @Override public void onItemClick(AdapterView<?> parent, View view, int position, long id) { Intent myRowClickIntent = new Intent(getActivity(), myDetailActivity.class); // we can send some data to the new Activity through "extras" // remember - our Tag is an object (Integer object) but putExtra() awaits some integer or string or some other type // so here we are saying that it should be understood/treated as an Integer myRowClickIntent.putExtra("item_id", (Integer)view.getTag() ); startActivity(myRowClickIntent); } }); 方法的一段代码:

onCreate

希望有人帮助...... :) 我也是Android新手 在学习Android开发方面获得此类帮助的大Bundle myExtras; int myItemId; myExtras = getIntent().getExtras(); if (myExtras != null) { myItemId = myExtras.getInteger("item_id"); } 到StackOverflow:)

答案 1 :(得分:3)

从理论上讲,你可以做任何一种方法,它可能没有问题。从长远来看,我会说你会用一个简单的实体对象和一个自定义适配器做得更好。更具体地说,从它的外观来看,我会选择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”ID&#39;每件物品。更好的是,你可以添加很多不同的字段而不用担心它在列表中的样子,因为视觉表示是由你在getView()方法中设置(并且不设置)的内容决定的您的适配器。