I\'m having a real trouble in building an android application that has a prepopulated database.
Please take a look at the entire source code.
I created a dat
Well DataHelper comes with a onCreate method you can create the database there a even populates there.
Official Android documentation
Called when the database is created for the first time. This is where the creation of tables and the initial population of the tables should happen.
in fact you haved override that method
@Override
public void onCreate(SQLiteDatabase db)
{
}