I tried to retrieve the real _id of my table when clicked in a spinner this way:
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
String c = parent.getSelectedItem().toString();
long id_mark = parent.getItemIdAtPosition(position);
Toast.makeText(parent.getContext(), "Category: " + c + " | _id: " + id_mark, Toast.LENGTH_LONG).show();
}
My table: (Some columns were erased by the user)
_id | category_name
---------------------
1 | NAME_HERE_1
3 | NAME_HERE_2
4 | NAME_HERE_3
7 | NAME_HERE_4
The Toast output is:
Category: NAME_HERE_2 | _id: 2
But the id_mark is different of _id of the my table. So how to proceed?
Thanks in advance!