当用户在“帐户和同步”中选择“添加帐户”或想要使用该应用程序时,我正在尝试让我的应用程序显示我的登录活动并且尚未登录。我已经非常仔细地遵循了示例SampleSyncAdapter,但无法使其工作并收到以下异常:
No Activity found to handle Intent { act=android.accounts.AccountAuthenticator }
我的身份验证服务包含:
public IBinder onBind(Intent intent) {
IBinder ret = null;
if (intent.getAction().equals(android.accounts.AccountManager.ACTION_AUTHENTICATOR_INTENT)){
ret = getAuthenticator().getIBinder();
}
return ret;
}
我的AndroidManifest.xml
:
<service android:name=".auth.MyAuthService"
android:exported="true"
android:process=":auth">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator" />
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator"
android:resource="@xml/authenticator"
/>
我的主要活动:
startActivity(new Intent(android.accounts.AccountManager.ACTION_AUTHENTICATOR_INTENT));
我尝试过两者兼顾:
Intent svc = new Intent(this, CreazaAuthService.class);
startService(svc);
和:
bindService(new Intent(android.accounts.AccountManager.ACTION_AUTHENTICATOR_INTENT), null, BIND_AUTO_CREATE);
在startActivity()
调用之前,但它仍无法找到该意图的活动。如果我尝试通过帐户添加帐户并同步我的应用程序崩溃与相同的ActivityNotFoundException
。
我做错了什么?
修改
我检查了c99的last.fm应用程序,它定义了一个自定义操作,并使用基于该操作的意图而不是android.accounts.AccountManager.ACTION_AUTHENTICATOR_INTENT
。这是一个更好的方法吗?有没有办法使它与帐户&amp;同步?
答案 0 :(得分:12)
在您的意图过滤器中放置<category android:name="android.intent.category.DEFAULT" />