इसका कारण यह है कि आप सूची दृश्य आइटम स्थिति पास कर रहे हैं, यह डेटाबेस पंक्ति आईडी होना चाहिए।
बदलें
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id)
{
showsDialog(position);
}
करने के लिए
@Override
public void onItemClick(AdapterView<?> parent, View view, int position, long id)
{
TextView pos = (TextView) view.findViewById(R.id.rowno);
showsDialog(pos.getText().toString());
}
आपने भी कहा
Once I delete any entry the row id on the listview doesn't seem to update the row number. (if i delete the first row, the row on top shows 2(should be 1, as it is the new first row)).
लेकिन ऐसा नहीं होगा क्योंकि यह डेटाबेस पंक्ति आईडी है सूची दृश्य स्थिति नहीं।