My Android app need the user to create an account to be able to use the app. The account info is stored in sqlite database. When the application starts I check if the user has an account, if not I show a sign up activity for the user.

Now I get reports from users that they sometimes comes to the sign up activity even if they've already created an account. This happens when they've closed the application and reopen it again.

This is the code I'm using and I need to figure out what the problem might be:

//MyApplication.java
public class MyApplication extends Application {
    private DataBaseUtility dbu;
    public boolean hasAccount;  

    @Override
    public void onCreate() {
        super.onCreate();

        //Init sqlite database
        this.dbu = new DataBaseUtility(this);

        //This loads the account data from the database and returns true if the user has already created an account
        this.hasAccount = loadAccount();
    }

    public boolean loadAccount() {
        boolean loadedData = false;

        String query = "SELECT data FROM tblaccount WHERE tblaccount.deleted=0";
        Cursor cursor = this.dbu.getCursor(query);
        if (cursor != null) {
            while (cursor.moveToNext()) {
                loadedData = true;
            }
            cursor.close();
        }

        return loadedData;
    }
}

//MainActivity.java
public class MainActivity extends TabActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        MyApplication application = (MyApplication)getApplication();
        if (!application.hasAccount) {
            //Take the user to the sign up activity
        }
}

My idea is that maybe sometimes MainActivity.onCreate() runs before MyApplication.onCreate(), can that be the case?

link|improve this question

Are you sure your loadAccount() method always works properly? Can you post it's code? – Vladimir Ivanov Aug 3 '11 at 8:02
You can try printing something in Logcat to see what method is called first. – Alexandru Averescu Aug 3 '11 at 8:05
Yeah, I'm quite sure, it only uses the DataBaseUtility to load the data from the sqlite database. So as far as the sqlite database is initialized it should work. – Martin Aug 3 '11 at 8:06
Alex I haven't ever had this problem myself, have tried to open and close the app many many times and it always work like it should, so it is hard to reproduce. – Martin Aug 3 '11 at 8:07
So only some users experience it, the question is, on what phones? Maybe the connection to database is working slow, and takes some time to load. – Alexandru Averescu Aug 3 '11 at 8:09
show 5 more comments
feedback

1 Answer

up vote 0 down vote accepted

In application's onCreate, you are checking if the user has an account and setting a boolean.

You are checking in the MainActivity's onCreate if the user has an account through the application's boolean.

application's onCreate() executing before MainActivity's onCreate() is always the case! It is impossible for a different execution path to occur and since application's onCreate() does not have a Runnable it is a 100% garantuee.

Please make sure you're DataBaseUtility does not have any Runnables.

Anyway STILL there are several ways to reproduce the error! I will not state these now but you can know them when you see:

SOLUTION

MainActivity You have forgotten to update application.hasAccount upon successfull sign up~

public class MainActivity extends TabActivity {
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        MyApplication application = (MyApplication)getApplication();
        if (!application.hasAccount) {
            //Take the user to the sign up activity
            //if(successful) application.hasAccount = true
        }
}

To avoid database exceptions

I use this:

REMARK It would be much better to use more strong persistent status saving for the database -i.e. SharedPreferences

boolean isOpened = false;
//When I need to open
if(!isOpened){
    //open
    isOpened = true;
}
//When I need to close
if(isOpened){
    //close
    isOpened = false;
}

onDestroy() {  //every onDestroy
    if(isOpened){
        //close
    }
}
link|improve this answer
Thanks! So I can always be sure that application's onCreate() runs first, thats good. I save the user info in the sqlite database on successful signup. Then I set hasAccount = True, so that is not the case. There are thousands of users running the application and this errors seems to happen only for a few users. As I relay on the sqlite database stored on the device, maybe the problem is that it has been removed or is corrupt? – Martin Aug 3 '11 at 9:07
it can not go corrupt? Are you sure you are closing database? sometime if you do not close database (even if the app was closed using force close) next time you try to open, exception occurs! Did you try SharedPreferences? – Sherif elKhatib Aug 3 '11 at 9:10
Hmm, I'm not closing the database. I only have one open connection in DataBaseUtility that I use through the whole app. So when should I close it, when the app closes? – Martin Aug 3 '11 at 9:15
I edited the answer ... mmm – Sherif elKhatib Aug 3 '11 at 9:20
Thanks! As I only open the database once in application's onCreate and keep it open do I put this code in the DataBaseUtility or in MyApplication? – Martin Aug 3 '11 at 9:29
show 6 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.