How to get rowID of custom ListView's selected row's child?
问题 I've a custom list view with 4 textViews and 2 buttons,which i am filling up via database, TV NAME | TV EMAIL | TV NO | TV ID(database primary key,set invisible) | ButtonEDIT | ButtonDelete. I successfully got the id from the database,which is set as primary key. Now what i want to do is,when i PRESS ButtonEDIT,it should toast a message something like "Edit selected for ID :" + TVID.getText().toString(),so basically i want to display the value which is stored in the TVID(i.e. my database id).