未从MainActivity的AbstractAccountAuthenticator实现调用addAccount

时间:2015-05-12 16:12:40

标签: java android accountmanager

我正在关注tutorial将用户帐户添加到Android帐户管理器。

在我的主要活动中,我有以下方法:

private void addNewAccount(String accountType, String authTokenType) {
    Log.d(TAG,"addNewAccount called");
    final AccountManagerFuture<Bundle> future = mAccountManager.addAccount(accountType, authTokenType, null, null, this, new AccountManagerCallback<Bundle>() {
        @Override
        public void run(AccountManagerFuture<Bundle> future) {
            try {
                Bundle bnd = future.getResult();
                Log.d("ACME", "AddNewAccount Bundle is " + bnd);

            } catch (Exception e) {
                e.printStackTrace();
            }
        }
    }, null);
}

正在调用此方法,因为我在logcat中看到了日志。现在我的AbstractAccountAuthenticator实现如下:

public class AcmeAuthenticator extends AbstractAccountAuthenticator {

private String TAG = "AcmeAuthenticator";
private final Context mContext;

public AcmeAuthenticator(Context context) {
    super(context);
    this.mContext = context;
}

@Override
public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) throws NetworkErrorException {
    Log.d("acme", TAG + "> addAccount");

    final Intent intent = new Intent(mContext, AuthenticatorActivity.class);
    intent.putExtra(AuthenticatorActivity.ARG_ACCOUNT_TYPE, accountType);
    intent.putExtra(AuthenticatorActivity.ARG_AUTH_TYPE, authTokenType);
    intent.putExtra(AuthenticatorActivity.ARG_IS_ADDING_NEW_ACCOUNT, true);
    intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);

    final Bundle bundle = new Bundle();
    bundle.putParcelable(AccountManager.KEY_INTENT, intent);
    return bundle;
}

永远不会调用上述方法。以下是我为它创建的服务:

public class AcmeAuthenticatorService extends Service {
@Override
public IBinder onBind(Intent intent) {

    AcmeAuthenticator authenticator = new AcmeAuthenticator(this);
    return authenticator.getIBinder();
}
}

我的明确定义如下:

<activity android:name="com.exercise.accountmanagerstudy.accountAuthenticator.AuthenticatorActivity" android:label="@string/login_label"/>
    <service android:name=".accountAuthenticator.AcmeAuthenticatorService">
        <intent-filter>
            <action android:name="android.accounts.AccountAuthenticator" />
        </intent-filter>
        <meta-data android:name="android.accounts.AccountAuthenticator"
            android:resource="@xml/authenticator" />
    </service>
<!-- client -->
<uses-permission android:name="android.permission.USE_CREDENTIALS"/>
<uses-permission android:name="android.permission.GET_ACCOUNTS"/>
<uses-permission android:name="android.permission.MANAGE_ACCOUNTS"/>

<!-- Authenticator -->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.AUTHENTICATE_ACCOUNTS"/>

我没有收到编译器错误,不调用AbstractAccountAuthenticator实现中的addAccount覆盖。从主要活动addNewAccount方法。我研究过几个链接herehere。 任何帮助将不胜感激。

1 个答案:

答案 0 :(得分:4)

好的,所以我终于搞清楚了。显然,AcmeAuthenticator的authenticator.xml文件有一个名为accountType的字段:

++y

当我在主活动中调用addNewAccount时,我应该将上面提到的xml中的accountType的确切值作为accountType参数传递。 Phew,这花了我很长时间,希望它可以帮助别人:-)。