我为每一行都有responceid(String responceid = Activity2.getData())...我希望当我点击列表项的任何位置时,它会显示相应的响应...所以如何为每一行绑定responseid。 ... responceid来自数据库
@Override
protected void onListItemClick(ListView l, View v, int position, long id)
{
super.onListItemClick(l, v, position, id);
String responceid = Activity2.getData();
Object o = (String) (Notepadv3.this).getListAdapter().getItem(position);
Toast.makeText(this, "this row responce id is= " + " " + , Toast.LENGTH_LONG).show();
}
答案 0 :(得分:0)
如果您已使用适配器填充listView,则使用getItemId()来检索数据库ID。