android - Dialog List With SQLite data -
i have code shows me list of items have in sqlite database. this list opening in screen clicking button. have problems need display list in same screen, can't open antoher screen, want use dialog wchich have items database. trying modify code ain't results. this code: public list<string> populatelist() { list<string> ugraduatenameslist = new arraylist<string>(); androidopendbhelper openhelperclass = new androidopendbhelper(this); sqlitedatabase sqlitedatabase = openhelperclass.getreadabledatabase(); cursor cursor = sqlitedatabase.query("relpregresppred", null, null, null, null, null, null); startmanagingcursor(cursor); while (cursor.movetonext()) { string descripcionrespuesta = cursor.getstring(cursor .getcolumnindex(androidopendbhelper.rdescripcionrespuesta)); undergraduatedetailspojo ugpojoclass = new undergraduatedetailspojo(); ugpojoclass.setrdescri...