亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Android輔助權限的示例分析

發布時間:2021-08-20 13:47:05 來源:億速云 閱讀:130 作者:小新 欄目:移動開發

這篇文章給大家分享的是有關Android輔助權限的示例分析的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。

一、介紹

輔助功能服務在后臺運行,并在觸發AccessibilityEvent時由系統接收回調。這樣的事件表示用戶界面中的一些狀態轉換,例如,焦點已經改變,按鈕被點擊等等。現在常用于自動化業務中,例如:微信自動搶紅包插件,微商自動加附近好友,自動評論朋友,點贊朋友圈,甚至運用在群控系統,進行刷單。

二、配置

1、新建Service并繼承AccessibilityService

/**
  * 核心服務:執行自動化任務
  * Created by czc on 2017/6/13.
  */
 public class TaskService_ extends AccessibilityService{
  @Override
  public void onAccessibilityEvent(AccessibilityEvent event) {
   //注意這個方法回調,是在主線程,不要在這里執行耗時操作
  }
  @Override
  public void onInterrupt() {
 
  }
 }

2、并配置AndroidManifest.xml

<service
  android:name=".service.TaskService"
  android:enabled="true"
  android:exported="true"
  android:label="@string/app_name_setting"
  android:permission="android.permission.BIND_ACCESSIBILITY_SERVICE">
  <intent-filter>
   <action android:name="android.accessibilityservice.AccessibilityService"/>
  </intent-filter>

  <meta-data
   android:name="android.accessibilityservice"
   android:resource="@xml/accessibility"/>
 </service>

3、在res目錄下新建xml文件夾,并新建配置文件accessibility.xml

<?xml version="1.0" encoding="utf-8"?>
<accessibility-service xmlns:android="http://schemas.android.com/apk/res/android"
 <!--監視的動作-->
 android:accessibilityEventTypes="typeAllMask"
 <!--提供反饋類型,語音震動等等。-->
 android:accessibilityFeedbackType="feedbackGeneric"
  <!--監視的view的狀態,注意這里設置flagDefault會到時候部分界面狀態改變,不觸發onAccessibilityEvent(AccessibilityEvent event)的回調-->
 android:accessibilityFlags="flagDefault|flagRetrieveInteractiveWindows|flagIncludeNotImportantViews|flagReportViewIds|flagRequestTouchExplorationMode"
 <!--是否要能夠檢索活動窗口的內容,此設置不能在運行時改變-->
 android:canRetrieveWindowContent="true"
 <!--功能描述-->
 android:description="@string/description"
 <!--同一事件間隔時間名-->
 android:notificationTimeout="100" 
 <!--監控的軟件包名-->
 android:packageNames="com.tencent.mm,com.eg.android.AlipayGphone" />

三、核心方法

1、根據界面text找到對應的組件(注:方法返回的是集合,找到的組件不一點唯一,同時這里的text不單單是我們理解的 TextView 的 Text,還包括一些組件的 ContentDescription)

accessibilityNodeInfo.findAccessibilityNodeInfosByText(text)

2、根據組件 id 找到對應的組件(注:方法返回的是集合,找到的組件不一點唯一,組件的 id 獲取可以通過 Android Studio 內置的工具 monitor 獲取,該工具路徑:C:\Users\Dell\AppData\Local\Android\Sdk\tools)

accessibilityNodeInfo.findAccessibilityNodeInfosByViewId(id)

使用 Monitor 工具獲取節點 id

Android輔助權限的示例分析

Monitor選擇id

四、輔助權限判斷是否開啟

public static boolean hasServicePermission(Context ct, Class serviceClass) {
  int ok = 0;
  try {
   ok = Settings.Secure.getInt(ct.getContentResolver(), Settings.Secure.ACCESSIBILITY_ENABLED);
  } catch (Settings.SettingNotFoundException e) {
  }

  TextUtils.SimpleStringSplitter ms = new TextUtils.SimpleStringSplitter(':');
  if (ok == 1) {
   String settingValue = Settings.Secure.getString(ct.getContentResolver(), Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES);
   if (settingValue != null) {
    ms.setString(settingValue);
    while (ms.hasNext()) {
     String accessibilityService = ms.next();
     if (accessibilityService.contains(serviceClass.getSimpleName())) {
      return true;
     }
    }
   }
  }
  return false;
 }

五、輔助的開啟方法

1.root 授權環境下,無需引導用戶到系統設置頁面開啟

public static void openServicePermissonRoot(Context ct, Class service) {
  String cmd1 = "settings put secure enabled_accessibility_services " + ct.getPackageName() + "/" + service.getName();
  String cmd2 = "settings put secure accessibility_enabled 1";
  String[] cmds = new String[]{cmd1, cmd2};
  ShellUtils.execCmd(cmds, true);
 }

2.targetSdk 版本小于23的情況下,部分手機也可通過以下代碼開啟權限,為了兼容,最好 try...catch 以下異常

public static void openServicePermission(Context ct, Class serviceClass) {
  Set<ComponentName> enabledServices = getEnabledServicesFromSettings(ct, serviceClass);
  if (null == enabledServices) {
   return;
  }
  ComponentName toggledService = ComponentName.unflattenFromString(ct.getPackageName() + "/" + serviceClass.getName());
  final boolean accessibilityEnabled = true;
  enabledServices.add(toggledService);
  // Update the enabled services setting.
  StringBuilder enabledServicesBuilder = new StringBuilder();
  for (ComponentName enabledService : enabledServices) {
   enabledServicesBuilder.append(enabledService.flattenToString());
   enabledServicesBuilder.append(":");
  }
  final int enabledServicesBuilderLength = enabledServicesBuilder.length();
  if (enabledServicesBuilderLength > 0) {
   enabledServicesBuilder.deleteCharAt(enabledServicesBuilderLength - 1);
  }
  Settings.Secure.putString(ct.getContentResolver(), Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES, enabledServicesBuilder.toString());
  // Update accessibility enabled.
  Settings.Secure.putInt(ct.getContentResolver(), Settings.Secure.ACCESSIBILITY_ENABLED, accessibilityEnabled ? 1 : 0);
 }

 public static Set<ComponentName> getEnabledServicesFromSettings(Context context, Class serviceClass) {
  String enabledServicesSetting = Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ENABLED_ACCESSIBILITY_SERVICES);
  if (enabledServicesSetting == null) {
   enabledServicesSetting = "";
  }
  Set<ComponentName> enabledServices = new HashSet<ComponentName>();
  TextUtils.SimpleStringSplitter colonSplitter = new TextUtils.SimpleStringSplitter(':');
  colonSplitter.setString(enabledServicesSetting);
  while (colonSplitter.hasNext()) {
   String componentNameString = colonSplitter.next();
   ComponentName enabledService = ComponentName.unflattenFromString(componentNameString);
   if (enabledService != null) {
    if (enabledService.flattenToString().contains(serviceClass.getSimpleName())) {
     return null;
    }
    enabledServices.add(enabledService);
   }
  }
  return enabledServices;
 }

3.引導用戶到系統設置界面開啟權限

public static void jumpSystemSetting(Context ct) {
  // jump to setting permission
  Intent intent = new Intent(Settings.ACTION_ACCESSIBILITY_SETTINGS);
  intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
  ct.startActivity(intent);
 }

4.結合一起,我們可以這樣開啟輔助權限

public static void openServicePermissonCompat(final Context ct, final Class service) {
  //輔助權限:如果root,先申請root權限
  if (isAppRoot()) {
   if (!hasServicePermission(ct, service)) {
    new Thread(new Runnable() {
     @Override
     public void run() {
      openServicePermissonRoot(ct, service);
     }
    }).start();
   }
  } else {
   try {
    openServicePermission(ct, service);
   } catch (Exception e) {
    e.printStackTrace();
    if (!hasServicePermission(ct, service)) {
     jumpSystemSetting(ct);
    }
   }
  }
 }

感謝各位的閱讀!關于“Android輔助權限的示例分析”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!

向AI問一下細節

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

AI

林口县| 响水县| 南漳县| 岑巩县| 长武县| 峡江县| 玉溪市| 景宁| 临颍县| 拜城县| 闵行区| 遵义市| 应用必备| 吉林省| 新安县| 舞阳县| 罗田县| 高台县| 静乐县| 静海县| 延安市| 丘北县| 永城市| 靖江市| 健康| 本溪市| 格尔木市| 蒙自县| 伊金霍洛旗| 旬阳县| 胶南市| 兰坪| 中牟县| 奈曼旗| 德庆县| 芮城县| 化州市| 盐池县| 图木舒克市| 冷水江市| 山阳县|