I am developing an Android application and I need to know status of the Google account used on the phone. I want to do this for the C2DM, but I don't want to ask the user to login again in his/her Google email account if they are already logged in. Is there any way to do it?
I already know hot to get the Google account..
Account[] accts = accountManager.getAccountsByType("com.google");
Account acct = accts[0];
System.out.println("Account:"+acct.name);
But how to check the status (logged_out, logging_in or logged_in)?
Thanks.