How to delete a particular row from SQLite database
问题 I have created a list view. On button click the data is added in list and also stored in an SQLite database. I have also added the image on the right-hand side of list, on click of which a particular row data is deleted, but I also want to delete data from SQLite. How could I do this? Main Activity.Java public class MainActivity extends Activity { EditText editText; Button Button,Button1; ListView listView; ArrayList<String> listItems; BaseAdapter adapter; private DataBaseHandler mHelper;