2011-07-12 70 views
2

我目前使用Android的AccountManager類檢索用戶gmail用戶名。 我的問題是,我的應用程序假定用戶已經將他的Google帳戶添加到他的Android手機中,並且我想問問是否可以啓動帳戶&同步設置應用程序,以防用戶實際上並未綁定他的Google賬戶給他的電話?運行帳戶和同步設置

AccountManager accountManager = AccountManager.get(getApplicationContext()); 
Account[] accounts = accountManager.getAccountsByType("com.google"); 
if (accounts.length == 0) // How? 
    // run Accounts & sync settings so that the user can add his Google account 

回答

相關問題