我知道这可能被称为重复的问题,但我确信我的情况非常独特。基本上我需要一种方法来获取我的光标id,即从我的表解析为自定义适配器的数据库中的id。因此,当我点击该列表时,它会烘烤正确的ID。这是我到目前为止所得到的......
请注意,我想使用customadapter而不是cursoradapter。
//Get Categories from database
final Cursor cursor = dbHandler.getCategories(0);
if (cursor != null) {
if(cursor.moveToFirst()){
do{
Categories categories = new Categories();
categories.set_id(cursor.getInt(0));
categories.set_categoryname(cursor.getString(2));
categories.set_categoriescaption(cursor.getString(3));
//list.add(cursor.getString(cursor.getColumnIndex(dbHandler.COLUMN_CATEGORY_NAME)));
categoriesList.add(categories);
}while (cursor.moveToNext());
}
cursor.close();
}
光标从我的sqlite数据库中获取数据
listView = (ListView) view.findViewById(R.id.categories);
adapter = new CategoryAdapter(view.getContext(), R.layout.cursor_row, categoriesList);
listView.setAdapter(adapter);
listView.setOnItemClickListener(
new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
String cid = String.valueOf(id);
Toast.makeText(view.getContext(), cid , Toast.LENGTH_SHORT).show();
当我点击按钮而没有postion id时,我希望显示表的真实id。真正的id应该从1开始,但我在这里得到0。帮助将不胜感激。谢谢
答案 0 :(得分:0)
在互联网上经过多次思考之后,我找到了一个现在很有意义的解决方案。
public void onItemClick(AdapterView<?> parent, View view, int position, long id)
onclick适配器视图中的id。我发现如果它没有被覆盖,它将被设置为默认位置。所以我在我的customadapter中传递了我的身份证,并且能够看到我的身份。
@Override
public long getItemId(int position) {
return data.get(position).Id;
}