溫馨提示×

溫馨提示×

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

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

怎么在Android中判斷定位功能是否可用

發(fā)布時間:2021-05-18 17:45:42 來源:億速云 閱讀:214 作者:Leah 欄目:移動開發(fā)

今天就跟大家聊聊有關怎么在Android中判斷定位功能是否可用,可能很多人都不太了解,為了讓大家更加了解,小編給大家總結了以下內容,希望大家根據這篇文章可以有所收獲。

判斷定位服務:

/**
   * 手機是否開啟位置服務,如果沒有開啟那么所有app將不能使用定位功能
   */
  public static boolean isLocServiceEnable(Context context) {
    LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
    boolean gps = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
    boolean network = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
    if (gps || network) {
      return true;
    }
    return false;
  }

判斷定位權限:

/**
   * 檢查權限列表
   *
   * @param context
   * @param op    這個值被hide了,去AppOpsManager類源碼找,如位置權限 AppOpsManager.OP_GPS==2
   * @param opString 如判斷定位權限 AppOpsManager.OPSTR_FINE_LOCATION
   * @return @see 如果返回值 AppOpsManagerCompat.MODE_IGNORED 表示被禁用了
   */
  public static int checkOp(Context context, int op, String opString) {
    final int version = Build.VERSION.SDK_INT;
    if (version >= 19) {
      Object object = context.getSystemService(Context.APP_OPS_SERVICE);
//      Object object = context.getSystemService("appops");
      Class c = object.getClass();
      try {
        Class[] cArg = new Class[3];
        cArg[0] = int.class;
        cArg[1] = int.class;
        cArg[2] = String.class;
        Method lMethod = c.getDeclaredMethod("checkOp", cArg);
        return (Integer) lMethod.invoke(object, op, Binder.getCallingUid(), context.getPackageName());
      } catch (Exception e) {
        e.printStackTrace();
        if (Build.VERSION.SDK_INT >= 23) {
          return AppOpsManagerCompat.noteOp(context, opString, context.getApplicationInfo().uid,
              context.getPackageName());
        }

      }
    }
    return -1;
  }

調用時先檢查權限:

/**
   * 檢查定位服務、權限
   */
  private void checkLocationPermission() {
    if (!AppUtil.isLocServiceEnable(this)) {//檢測是否開啟定位服務
      if (netErrorDialog == null || !netErrorDialog.isShowing()) {
        locErrorDialog = DialogUtil.showLocErrorDialog(activity, 0);
      }
    } else {//檢測用戶是否將當前應用的定位權限拒絕
      int checkResult = AppUtil.checkOp(this, 2, AppOpsManager.OPSTR_FINE_LOCATION);//其中2代表AppOpsManager.OP_GPS,如果要判斷懸浮框權限,第二個參數需換成24即AppOpsManager。OP_SYSTEM_ALERT_WINDOW及,第三個參數需要換成AppOpsManager.OPSTR_SYSTEM_ALERT_WINDOW
      int checkResult2 = AppUtil.checkOp(this, 1, AppOpsManager.OPSTR_FINE_LOCATION);
      if (AppOpsManagerCompat.MODE_IGNORED == checkResult || AppOpsManagerCompat.MODE_IGNORED == checkResult2) {
        if (netErrorDialog == null || !netErrorDialog.isShowing()) {
          locErrorDialog = DialogUtil.showLocErrorDialog(activity, 1);
        }
      }
    }
  }

如果不能使用,彈出對話框,根據1或2,判斷跳轉頁面:

/**
   * 無法定位對話框
   *
   * @param activity 上下文
   * @param state  權限狀態(tài)0,未開啟服務 1,未開啟權限
   * @return 對話框
   */
  public static Dialog showLocErrorDialog(Activity activity, int state) {
    Dialog locErrorDialog = new Dialog(activity, R.style.MyDialog);
    View contentView = View.inflate(activity, R.layout.dialog_tip_error_loc, null);
    locErrorDialog.setContentView(contentView);
    locErrorDialog.setCanceledOnTouchOutside(true);
    locErrorDialog.show();
    TextView checkNetCancel = contentView.findViewById(R.id.tv_submit_no);
    TextView checkNet = contentView.findViewById(R.id.tv_submit_yes);
    checkNetCancel.setOnClickListener(view -> {
      locErrorDialog.dismiss();
    });
    checkNet.setOnClickListener(view -> {
      locErrorDialog.dismiss();
      Intent intent = new Intent();
      if (state == 0) {
        //定位服務頁面
        intent.setAction(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
      } else {
        //應用詳情頁面
        intent.setAction(Settings.ACTION_APPLICATION_DETAILS_SETTINGS);
        intent.setData(Uri.parse("package:" + activity.getPackageName()));
      }
      intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
      try {
        activity.startActivity(intent);
      } catch (ActivityNotFoundException ex) {
        //如果頁面無法打開,進入設置頁面
        intent.setAction(Settings.ACTION_SETTINGS);
        try {
          activity.startActivity(intent);
        } catch (Exception e) {
          e.printStackTrace();
        }
      }
    });
    return locErrorDialog;
  }

Dialog樣式:

<style name="MyDialog" parent="@android:style/Theme.Dialog">
    <item name="android:windowFrame">@null</item>
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:windowNoTitle">true</item>
    <item name="android:background">@color/transparent</item>
  </style>

Android是什么

Android是一種基于Linux內核的自由及開放源代碼的操作系統(tǒng),主要使用于移動設備,如智能手機和平板電腦,由美國Google公司和開放手機聯(lián)盟領導及開發(fā)。

看完上述內容,你們對怎么在Android中判斷定位功能是否可用有進一步的了解嗎?如果還想了解更多知識或者相關內容,請關注億速云行業(yè)資訊頻道,感謝大家的支持。

向AI問一下細節(jié)

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

AI