I been following online tutorials on how to insert data into a database from an android app and have everything working except this small part
List
You can use ContentValues, for example:
ContentValues
ContentValues values = new ContentValues(); values.put("username", name); values.put("password", password); database.insert(Table_name, null, values);