Hello :)
I tried to make an android app, that populate some data from sqlite database to a list view
using arrayadapter,
the list I store data into is like this:
private String[] allUserColumns = { MySQLiteHelper.COLUMN_USERID,
MySQLiteHelper.COLUMN_USERNAME };
I want to move to another activity passing the ID related to user name by click at a listview item
I know that I should use setOnItemClickListener method
but actually I don't know how to do that,
I mean how to get the ID, and how to set the setOnItemClickListener Method to make such task
I tried google and get some codes, but nothing success with me
please any one can help me with a specific code ?
thanks all :)