Hello. How do I achieve method getLastRecord to run from within onCreate of an Activity class. (The getLastRecord methode calls a method in another class with extends SQLiteOpenHelper.). Any help with this?
Code:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_info);
// calls constructor of this databasehelperclass
myDb = new DatabaseHelper(this);
insertData();
getLastRecord (???);???
}
public String[] getLastRecord (String[] test)
{
// does something
}
Last edited by a moderator: