要回答你的第二個問題:
假設你的包名是com.companyname
創建的包com.companyname.auth延伸AbstractAccountAuthenticator一個Authenticator類,並實現該方法它:
@Override
public Bundle getAccountRemovalAllowed(AccountAuthenticatorResponse response, Account account) {
Bundle result = new Bundle();
boolean allowed = false; // or whatever logic you want here
result.putBoolean(AccountManager.KEY_BOOLEAN_RESULT, allowed);
return result;
}
一下添加到清單:
<service android:name=".auth.AuthenticationService">
<intent-filter>
<action android:name="android.accounts.AccountAuthenticator"></action>
</intent-filter>
<meta-data android:name="android.accounts.AccountAuthenticator" android:resource="@xml/authenticator"></meta-data>
</service>
(請注意,lint會提示此導出的服務不需要權限)。
然後在res/XML添加authenticator.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<account-authenticator
xmlns:android="http://schemas.android.com/apk/res/android"
android:accountType="com.companyname"
android:icon="@drawable/app_icon"
android:smallIcon="@drawable/app_icon_small"
android:label="@string/app_name" />
假設你的帳戶類型是 「com.companyname」。這就是我們所做的,它似乎是從API 8起。