int txt= (int) parent.getItemIdAtPosition(position)
When i display txt
variable in Toast my application makes crush and i need to get id of selected Item and then save that id in other table please help me
int txt= (int) parent.getItemIdAtPosition(position)
When i display txt
variable in Toast my application makes crush and i need to get id of selected Item and then save that id in other table please help me
spinner.setOnItemSelectedListener(new OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
String id = spinner.getItemAtPosition(position).toString();
}
@Override
public void onNothingSelected(AdapterView<?> arg0) {
}
});