天天看點

【Android 程序保活】應用程序拉活 ( 賬戶同步拉活 | 賬号服務注冊 | 源碼資源 )

文章目錄

  • 一、 賬戶簡介
  • 二、 賬号服務注冊
  • 1、 服務 Service
  • 2、 AndroidManifest.xml 中注冊 Service
  • 3、 賬号驗證資源
  • 4、檢視賬号設定
  • 三、 源碼資源

一、 賬戶簡介

Android 手機的裝置的 " 設定 " 中 , 有 " 賬号 " 選項 ;

【Android 程式保活】應用程式拉活 ( 賬戶同步拉活 | 賬号服務注冊 | 源碼資源 )

​點進去後的賬号頁面 :​

【Android 程式保活】應用程式拉活 ( 賬戶同步拉活 | 賬号服務注冊 | 源碼資源 )

點選添加賬号 , 有以下選項 :

【Android 程式保活】應用程式拉活 ( 賬戶同步拉活 | 賬号服務注冊 | 源碼資源 )

由開發者開發的應用也可以添加賬戶 ;

上述的應用都是賬戶拉活的同行 ;

應用 APP 中可以注冊 " 賬戶服務 Service " , 應用安裝後 , 如果系統發現應用中有該類型服務 , 就會為該應用開放添加賬戶的功能 ;

系統通過 Binder 機制 , 操作使用者的 " 賬戶服務 Service " ;

​第三方應用可以通過該賬戶服務 , 将資料同步到伺服器中 ;​

​系統在進行應用賬戶同步時 , 會自動将對應的應用拉活 ;​

Google 官方提供了賬戶同步案例 , https://github.com/googlearchive/android-BasicSyncAdapter , 已經停止維護了 , 但是項目還是有參考價值的 ; ( 源碼放在了本部落格的資源檔案中 )

在上述項目中指向了推薦的背景任務示例 https://github.com/android/background-tasks-samples ; ( 源碼放在了本部落格的資源檔案中 )

二、 賬号服務注冊

注冊一個服務 , 該服務的 onBind 方法傳回 AbstractAccountAuthenticator 對象的 Binder , 隻要該應用安裝 , 就可以在 " 設定 -> 賬号 " 中檢視該應用的賬号 ;

1、 服務 Service

package kim.hsl.keep_progress_alive.account_service;

import android.accounts.AbstractAccountAuthenticator;
import android.accounts.Account;
import android.accounts.AccountAuthenticatorResponse;
import android.accounts.NetworkErrorException;
import android.app.Service;
import android.content.Context;
import android.content.Intent;
import android.os.Bundle;
import android.os.IBinder;

public class AuthenticationService extends Service {

    /**
     * 賬戶驗證器
     */
    AccountAuthenticator mAccountAuthenticator;

    public AuthenticationService() {
    }

    @Override
    public IBinder onBind(Intent intent) {
        return mAccountAuthenticator.getIBinder();
    }

    @Override
    public void onCreate() {
        super.onCreate();

        // 建立賬戶驗證器
        mAccountAuthenticator = new AccountAuthenticator(this);
    }

    /**
     * 賬戶驗證器
     */
    class AccountAuthenticator extends AbstractAccountAuthenticator {

        public AccountAuthenticator(Context context) {
            super(context);
        }

        @Override
        public Bundle editProperties(AccountAuthenticatorResponse response, String accountType) {
            return null;
        }

        @Override
        public Bundle addAccount(AccountAuthenticatorResponse response, String accountType, String authTokenType, String[] requiredFeatures, Bundle options) throws NetworkErrorException {
            return null;
        }

        @Override
        public Bundle confirmCredentials(AccountAuthenticatorResponse response, Account account, Bundle options) throws NetworkErrorException {
            return null;
        }

        @Override
        public Bundle getAuthToken(AccountAuthenticatorResponse response, Account account, String authTokenType, Bundle options) throws NetworkErrorException {
            return null;
        }

        @Override
        public String getAuthTokenLabel(String authTokenType) {
            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;
        }
    }
}      

2、 AndroidManifest.xml 中注冊 Service

​核心配置 :​

<!-- 用于賬戶同步拉活 -->
        <service
            android:name=".account_service.AuthenticationService"
            android:enabled="true"
            android:exported="true" >
            <intent-filter>
                <action android:name="android.accounts.AccountAuthenticator"/>
            </intent-filter>
            <meta-data
                android:name="android.accounts.AccountAuthenticator"
                android:resource="@xml/account_authenticator"/>
        </service>      

​完整配置檔案 :​

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="kim.hsl.keep_progress_alive">

    <uses-permission android:name="android.permission.FOREGROUND_SERVICE" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/Theme.Keep_Progress_Alive">


        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <!--
            設定最近任務清單中不顯示該 Activity 元件 ( 不要被使用者察覺 )
            android:excludeFromRecents="true"

            設定 Activity 親和性
            讓該界面在一個獨立的任務棧中 , 不要與本應用的其它任務棧放在一起
            避免解除鎖屏後 , 關閉 1 像素界面 , 将整個任務棧都喚醒
            android:taskAffinity="kim.hsl.keep_progress_alive.alive"
        -->
        <activity
            android:name=".one_pixel_activity.OnePixelActivity"
            android:excludeFromRecents="true"
            android:taskAffinity="kim.hsl.keep_progress_alive.onepixel"
            android:theme="@style/OnePixelActivityTheme" />

        <!-- 用于提權的前台程序 -->
        <service
            android:name=".foreground_service.ForegroundService"
            android:enabled="true"
            android:exported="true" />

        <!-- 用于提權的前台程序, 關閉通知操作 -->
        <service
            android:name=".foreground_service.CancelNotificationService"
            android:enabled="true"
            android:exported="true" />

        <!-- 系統 Service 機制拉活 -->
        <service
            android:name=".stick_service.StickService"
            android:enabled="true"
            android:exported="true" />

        <!-- 用于賬戶同步拉活 -->
        <service
            android:name=".account_service.AuthenticationService"
            android:enabled="true"
            android:exported="true" >
            <intent-filter>
                <action android:name="android.accounts.AccountAuthenticator"/>
            </intent-filter>
            <meta-data
                android:name="android.accounts.AccountAuthenticator"
                android:resource="@xml/account_authenticator"/>
        </service>

    </application>

</manifest>      

3、 賬号驗證資源

在 res 目錄下建立 xml 目錄 , 在 xml 目錄下建立 account_authenticator.xml 檔案 ,

<?xml version="1.0" encoding="utf-8"?>
<account-authenticator
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:accountType="keep_progress_alive.account"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name" />      
【Android 程式保活】應用程式拉活 ( 賬戶同步拉活 | 賬号服務注冊 | 源碼資源 )

4、檢視賬号設定

隻要在應用中注冊了該服務 , 手機系統中安裝了該應用 , 就可以在 " 設定 -> 賬号 -> 添加賬号 " 界面中 , 檢視到該應用的賬号 ;

【Android 程式保活】應用程式拉活 ( 賬戶同步拉活 | 賬号服務注冊 | 源碼資源 )

三、 源碼資源

​源碼資源 :​

  • ​GitHub 位址 :​ https://github.com/han1202012/Keep_Progress_Alive