91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

提高Android應用進程存活率的方法是什么

發布時間:2021-12-18 16:27:00 來源:億速云 閱讀:175 作者:iii 欄目:移動開發

這篇文章主要講解了“提高Android應用進程存活率的方法是什么”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“提高Android應用進程存活率的方法是什么”吧!

接上文

  • 創建Account服務

public class XXAuthService extends Service {     private XXAuthenticator mAuthenticator;       @Override     public void onCreate() {         mAuthenticator = new XXAuthenticator(this);     }       private XXAuthenticator getAuthenticator() {         if (mAuthenticator == null)             mAuthenticator = new XXAuthenticator(this);         return mAuthenticator;     }       @Override     public IBinder onBind(Intent intent) {         return getAuthenticator().getIBinder();     }       class XXAuthenticator extends AbstractAccountAuthenticator {         private final Context context;         private AccountManager accountManager;         public XXAuthenticator(Context context) {             super(context);             this.context = context;             accountManager = AccountManager.get(context);         }           @Override         public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options)                 throws NetworkErrorException { // 添加賬號 示例代碼             final Bundle bundle = new Bundle();             final Intent intent = new Intent(context, AuthActivity.class);             intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);             bundle.putParcelable(AccountManager.KEY_INTENT, intent);             return bundle;         }           @Override         public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options)                 throws NetworkErrorException { // 認證 示例代碼             String authToken = accountManager.peekAuthToken(account, getString(R.string.account_token_type));             //if not, might be expired, register again             if (TextUtils.isEmpty(authToken)) {                 final String password = accountManager.getPassword(account);                 if (password != null) {                     //get new token authToken = account.name + password;                 }             }             //without password, need to sign again             final Bundle bundle = new Bundle();             if (!TextUtils.isEmpty(authToken)) {                 bundle.putString(AccountManager.KEY_ACCOUNT_NAME, account.name);                 bundle.putString(AccountManager.KEY_ACCOUNT_TYPE, account.type);                 bundle.putString(AccountManager.KEY_AUTHTOKEN, authToken);                 return bundle;             }               //no account data at all, need to do a sign             final Intent intent = new Intent(context, AuthActivity.class);             intent.putExtra(AccountManager.KEY_ACCOUNT_AUTHENTICATOR_RESPONSE, response);             intent.putExtra(AuthActivity.ARG_ACCOUNT_NAME, account.name);             bundle.putParcelable(AccountManager.KEY_INTENT, intent);             return bundle;         }           @Override         public String getAuthTokenLabel(String authTokenType) { //            throw new UnsupportedOperationException();             return null;         }           @Override         public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {             return null;         }           @Override         public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options)                 throws NetworkErrorException {             return null;         }           @Override         public Bundle updateCredentials(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options)                 throws NetworkErrorException {             return null;         }           @Override         public Bundle hasFeatures(AccountAuthenticatorResponse response, Account account, String[] features)                 throws NetworkErrorException {             return null;         }     } }
  • 聲明Account服務

<service android:name="**.XXAuthService" android:exported="true" android:process=":core"> <intent-filter> <action android:name="android.accounts.AccountAuthenticator"/> </intent-filter> <meta-data android:name="android.accounts.AccountAuthenticator" android:resource="@xml/authenticator"/> </service>

其中authenticator為:

<?xml version="1.0" encoding="utf-8"?> <account-authenticator xmlns:android="http://schemas.android.com/apk/res/android"     android:accountType="@string/account_auth_type"     android:icon="@drawable/icon"     android:smallIcon="@drawable/icon"     android:label="@string/app_name" />
  • 使用Account服務

同SyncAdapter,通過AccountManager使用

。申請Token主要是通過 AccountManager.getAuthToken)系列方法

。添加賬號則通過 AccountManager.addAccount)

。查看是否存在賬號通過 AccountManager.getAccountsByType)

感謝各位的閱讀,以上就是“提高Android應用進程存活率的方法是什么”的內容了,經過本文的學習后,相信大家對提高Android應用進程存活率的方法是什么這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

阿坝县| 滨州市| 台江县| 鹰潭市| 连江县| 延寿县| 泊头市| 雷山县| 新邵县| 南宫市| 花莲市| 鄂州市| 桓仁| 大新县| 娄烦县| 迭部县| 通城县| 中宁县| 万荣县| 樟树市| 红安县| 麻阳| 门头沟区| 通山县| 昌乐县| 白水县| 西宁市| 同心县| 渭源县| 府谷县| 大理市| 津市市| 常熟市| 侯马市| 云南省| 孝昌县| 安图县| 四会市| 丰台区| 湘阴县| 且末县|