2012-03-21 12 views
5

私のアプリは認証トークンを共有するためにアカウントマネージャーを使用しており、早期4.0でもうまく動作します。 しかし、Nexus S(4.0.3)でアプリを試してみると、getAuthTokenメソッドを呼び出すたびにNPEが発生します。 スタックトレースは次のように:私はGoogleの持つAuthTokenを得るときgetAuthTokenが動作しませんICS

E/AndroidRuntime(5282): java.lang.RuntimeException: Unable to start activity ComponentInfo{android/android.accounts.Gra 
ntCredentialsPermissionActivity}: java.lang.NullPointerException 
E/AndroidRuntime(5282):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1956) 
E/AndroidRuntime(5282):  at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1981) 
E/AndroidRuntime(5282):  at android.app.ActivityThread.access$600(ActivityThread.java:123) 
E/AndroidRuntime(5282):  at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1147) 
E/AndroidRuntime(5282):  at android.os.Handler.dispatchMessage(Handler.java:99) 
E/AndroidRuntime(5282):  at android.os.Looper.loop(Looper.java:137) 
E/AndroidRuntime(5282):  at android.app.ActivityThread.main(ActivityThread.java:4424) 
E/AndroidRuntime(5282):  at java.lang.reflect.Method.invokeNative(Native Method) 
E/AndroidRuntime(5282):  at java.lang.reflect.Method.invoke(Method.java:511) 
E/AndroidRuntime(5282):  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784) 
E/AndroidRuntime(5282):  at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551) 
E/AndroidRuntime(5282):  at dalvik.system.NativeStart.main(Native Method) 
E/AndroidRuntime(5282): Caused by: java.lang.NullPointerException 
E/AndroidRuntime(5282):  at android.accounts.GrantCredentialsPermissionActivity.onCreate(GrantCredentialsPermissi 
onActivity.java:84) 
E/AndroidRuntime(5282):  at android.app.Activity.performCreate(Activity.java:4465) 
E/AndroidRuntime(5282):  at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1049) 
E/AndroidRuntime(5282):  at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:1920) 
E/AndroidRuntime(5282):  ... 11 more 
W/ActivityManager( 151): Force finishing activity android/.accounts.GrantCredentialsPermissionActivity 

しかし、それが正常に動作します。 私の質問は次のとおりです: 私のコードに何か問題がありますか?どのように修正できますか? それはアンドロイドのバグで、後で修正される予定ですか?

+2

誰かがこのためにバグの問題を報告しているのに役立ちますhttp://code.google.com/p/android/issues/detail?id=23421 – rds

答えて

1

この問題はしばらくの間、私を殺したが、これはICS 4.0.3に私の仕事:

new AccountManagerCallback<Bundle>() { 

@Override 
public void run(AccountManagerFuture<Bundle> future) { 
    Bundle bundle; 

    try { 

     bundle = future.getResult(); 
     Intent intent = (Intent)bundle.get(AccountManager.KEY_INTENT); 
     if(intent != null){           

      startActivity(intent); 
    //In the activity that runs this I check for a flag in the onResume, which tells me that we returned from this activity 

     } 
     else{ 
      //we have the token! 
     } 

    } catch (OperationCanceledException e) { 

    } catch (AuthenticatorException e) { 

    } catch (IOException e) { 

    } 

    } 
} 

この方法:「コールバック」はこのようないくつかのものを探します

AccountManager am = AccountManager.get(context); 
Account[] accounts = am.getAccountsByType("com.google"); 
Account selected = accounts[0]; 
am.getAuthToken(account, "ah", false, callback, null); 

GrantCredentialsPermissionActivityを返さない場合、 'LoginActivity'のような別のものを返します。

希望これは

+0

しかし、どのようなGoogle以外のアカウントはどうですか? –

+0

Google以外のアカウントで試したことはありません。 – Theblacknight

+0

このエラーは、パラメータ化されたコールバックにも到達する前に、自分自身で発生します。しかし、 'getAccountsByType(String s)'ではなく 'getAccounts()'を使って解決しました。 (http://stackoverflow.com/questions/13577100/google-drive-sdk-errorで提案されているとおり) – Robadob