Possible Duplicate:
Android: Heavy DB operations with progress dialog
I have a huge array of Strings which I'm trying to insert into the sqlite DB. Due to this, I am using the begintransaction idiom in my doInBackground, which works perfectly. The problem is that the ProgressDialog is not being shown. What could be the problem? Is it because beginTransaction works only in EXCLUSIVE mode? Any help is appreciated. Thanks!
@Override
public void onCreate(SQLiteDatabase database) {
database.execSQL(Constants.CREATE_TABLE_DICT);
mDatabase = database;
readFile(R.raw.dict);
new InitDB().execute();
}
public class InitDB extends AsyncTask<Void, Void, Void> {
InsertHelper ih;
int wordColumn;
private ProgressDialog mProgD;
@Override
protected void onPreExecute() {
super.onPreExecute();
mProgD = ProgressDialog.show(mContext, "", "Wait", true);//NOT BEING SHOWN!
ih = new InsertHelper(mDatabase, "dictionary");
wordColumn = ih.getColumnIndex("word");
}
@Override
protected Void doInBackground(Void... params) {
mDatabase.beginTransaction();
try {
String [] ss = mWords.toString().split("\\|");
for(int i=0; i<ss.length; i++) {
ih.prepareForInsert();
String word = ss[i];
ih.bind(wordColumn, word);
ih.execute();
}
mDatabase.setTransactionSuccessful();
} finally {
mDatabase.endTransaction();
}
return null;
}
@Override
protected void onPostExecute(Void result) {
super.onPostExecute(result);
mProgD.dismiss();
}
}
EDIT: Here's where the context comes from:
//Constructor
public AppDatabase(Context context) {
super(context, Constants.DATABASE_NAME, null, Constants.DATABASE_VERSION);
mContext = context;
}