<Allow user to select SQLite record from list of f...
# stackoverflow
u
Allow user to select SQLite record from list of fields This is my first attempt at writing an android app in Kotlin and I need a little help. My app creates an SQLite db called 'BOPA_record' with two colums 'TOPIC_COL' and 'BOPA_COL'. When two EditText fields are filled, the user clicks 'save' and the entries are written to the table. This all works. What I want now is a way to show the user the list of previous entries in the TOPIC_COL, when they click a button, and when they click a topic the record is displayed. I've tried a few methods but I...