9

我有一个列表视图。当点击 ListView 上的项目时,它会加载一个 SubView。我想为 ListView 的每一行分配一个 ID,这样我就可以将该 ID 传递给 SubView。如何为 ListView 中的每一行分配一个特定的 ID?

这是我当前加载 ListView 的方式:

setListAdapter(new ArrayAdapter<String>(this, R.layout.list_item, mArrayList));
4

4 回答 4

9

这是我解决问题的方法。我从本地 SQLite 数据库中获取了employee_ids 和employee_names,然后同时创建了一个employeeNamesArray 的ArrayList 和一个employeeIdArray 的ArrayList。因此,employeeIdArray[0] 将与employeeNameArray[0] 匹配,employeeIdArray[1] 将与employeeNameArray[1] 匹配,等等。

创建 ArrayLists 后,我将employeeNameArray 输入ListView。

后来,在 onListItemClick 中,我检索了所选 ListView 行的位置。这个“位置”将与 ArrayLists 中的位置相对应 - 因此,如果我选择 ListView 中的第一行,则位置将为零,并且employeeNameArray[0] 与employeeIdArray[0] 匹配。我从 employeeIdArray 中获取 cooloating 条目,并使用 putExtra 将其推送到下一个 Activity。

public class MyFirstDatabase extends ListActivity {
    ArrayList<String> employeeIdArray = new ArrayList<String>(); // List of EmployeeIDs

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);                                                           

        // Open the database
        SQLiteDatabase db;
        db = openOrCreateDatabase("mydb.db",SQLiteDatabase.CREATE_IF_NECESSARY, null);
        db.setVersion(1);
        db.setLocale(Locale.getDefault());
        db.setLockingEnabled(true);

        // Query the database
        Cursor cur = db.query("employee", null, null, null, null, null, "employee_lastname"); 

        cur.moveToFirst(); // move to the begin of the db results       

        ArrayList<String> employeeNameArray = new ArrayList<String>(); // Initialize mArrayList


        while (cur.isAfterLast() == false) {
            employeeNameArray.add(cur.getString(1)); // add the employee name to the nameArray
            employeeIdArray.add(cur.getString(0)); // add the employee id to the idArray
            cur.moveToNext(); // move to the next result set in the cursor
        } 

        cur.close(); // close the cursor


        // put the nameArray into the ListView  
        setListAdapter(new ArrayAdapter<String>(this,R.layout.list_item,employeeNameArray));          
        ListView lv = getListView();  
        lv.setTextFilterEnabled(true);
    }


    protected void onListItemClick(ListView l, View v, final int position, long id) { 
        super.onListItemClick(l, v, position, id);                
        Intent myIntent = new Intent(this, SubView.class); // when a row is tapped, load SubView.class

        Integer selectionID = Integer.parseInt(employeeIdArray.get(position)); // get the value from employeIdArray which corrosponds to the 'position' of the selected row
        myIntent.putExtra("RowID", selectionID); // add selectionID to the Intent   

        startActivityForResult(myIntent, 0); // display SubView.class  

    } 
}
于 2010-06-16T21:32:28.820 回答
2

嗨,克里斯,您的 listView 中已经有了位置 ID,请实现 onListItemClick() 函数。

    protected void onListItemClick(ListView l, View v, final int position, long id) {
      super.onListItemClick(l, v, position, id);               
      Toast.makeText(this,  "my id to pass along the subview is " + position,Toast.LENGTH_LONG).show();

   }

如果你想评估你自己的 id 使用 setTag()

v.setTag("myownID"+position);
于 2010-06-14T22:36:36.823 回答
2

你不能用标准的ArrayAdapter做到这一点你需要扩展 ArrayAdapter 并覆盖getItemId()方法,也许还有hasStableIds()方法。

然后,您必须在 hasStableIds 方法中返回 true 并在为您的 getItemId 方法提供的位置生成项目的 id。

于 2010-06-16T08:34:11.560 回答
0

在花了几个小时之后,我发现这个最简单的方法是覆盖适配器的 bindView 并在项目上设置一个包含行的 _id 的标记值 - 在我的例子中,它是 ListView 行中的一个按钮。

SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,
        R.layout.note, cursor, fromColumns, toViews, 0) {

    @Override
    // add the _id field value to the button's tag
    public void bindView(View view, Context context, Cursor cursor) {
        super.bindView(view, context, cursor);
        Integer index = cursor.getColumnIndex("_id");
        Integer row_id = cursor.getInt(index);
        Button button = (Button) view.findViewById(R.id.button_delete_record);
        button.setTag(row_id);
    }
};
于 2017-11-13T07:26:25.230 回答