真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android6.0獲取GPS定位和獲取位置權(quán)限和位置信息的方法

1.添加權(quán)限--6.0之后要動態(tài)獲取,下面會說

創(chuàng)新互聯(lián)公司專注為客戶提供全方位的互聯(lián)網(wǎng)綜合服務(wù),包含不限于網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、龍海網(wǎng)絡(luò)推廣、重慶小程序開發(fā)、龍海網(wǎng)絡(luò)營銷、龍海企業(yè)策劃、龍海品牌公關(guān)、搜索引擎seo、人物專訪、企業(yè)宣傳片、企業(yè)代運營等,從售前售中售后,我們都將竭誠為您服務(wù),您的肯定,是我們最大的嘉獎;創(chuàng)新互聯(lián)公司為所有大學(xué)生創(chuàng)業(yè)者提供龍海建站搭建服務(wù),24小時服務(wù)熱線:18980820575,官方網(wǎng)址:www.cdcxhl.com

2.直接上代碼,不多說,代碼中注釋很詳細(xì)。

private static final int BAIDU_READ_PHONE_STATE = 100;//定位權(quán)限請求
private static final int PRIVATE_CODE = 1315;//開啟GPS權(quán)限
/**
 * 檢測GPS、位置權(quán)限是否開啟
 */
public void showGPSContacts() {
 lm = (LocationManager) this.getSystemService(this.LOCATION_SERVICE);
 boolean ok = lm.isProviderEnabled(LocationManager.GPS_PROVIDER);
 if (ok) {//開了定位服務(wù)
  if (Build.VERSION.SDK_INT >= 23) { //判斷是否為android6.0系統(tǒng)版本,如果是,需要動態(tài)添加權(quán)限
   if (ContextCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION)
     != PERMISSION_GRANTED) {// 沒有權(quán)限,申請權(quán)限。
    ActivityCompat.requestPermissions(this, LOCATIONGPS,
      BAIDU_READ_PHONE_STATE);
   } else {
    getLocation();//getLocation為定位方法
   }
  } else {
   getLocation();//getLocation為定位方法
  }
 } else {
  Toast.makeText(this, "系統(tǒng)檢測到未開啟GPS定位服務(wù),請開啟", Toast.LENGTH_SHORT).show();
  Intent intent = new Intent();
  intent.setAction(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
  startActivityForResult(intent, PRIVATE_CODE);
 }
}

/**
 * 獲取具體位置的經(jīng)緯度
 */
private void getLocation() {
 // 獲取位置管理服務(wù)
 LocationManager locationManager;
 String serviceName = Context.LOCATION_SERVICE;
 locationManager = (LocationManager) this.getSystemService(serviceName);
 // 查找到服務(wù)信息
 Criteria criteria = new Criteria();
 criteria.setAccuracy(Criteria.ACCURACY_FINE); // 高精度
 criteria.setAltitudeRequired(false);
 criteria.setBearingRequired(false);
 criteria.setCostAllowed(true);
 criteria.setPowerRequirement(Criteria.POWER_LOW); // 低功耗
 String provider = locationManager.getBestProvider(criteria, true); // 獲取GPS信息
 /**這段代碼不需要深究,是locationManager.getLastKnownLocation(provider)自動生成的,不加會出錯**/
 if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PERMISSION_GRANTED) {
  // TODO: Consider calling
  // ActivityCompat#requestPermissions
  // here to request the missing permissions, and then overriding
  // public void onRequestPermissionsResult(int requestCode, String[] permissions,
  //           int[] grantResults)
  // to handle the case where the user grants the permission. See the documentation
  // for ActivityCompat#requestPermissions for more details.
  return;
 }
 Location location = locationManager.getLastKnownLocation(provider); // 通過GPS獲取位置
 updateLocation(location);
}

/**
 * 獲取到當(dāng)前位置的經(jīng)緯度
 * @param location
 */
private void updateLocation(Location location) {
 if (location != null) {
  double latitude = location.getLatitude();
  double longitude = location.getLongitude();
  LogUtil.e("維度:" + latitude + "\n經(jīng)度" + longitude);
 } else {
  LogUtil.e("無法獲取到位置信息");
 }
}
/**
 * Android6.0申請權(quán)限的回調(diào)方法
 */
@Override
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
 super.onRequestPermissionsResult(requestCode, permissions, grantResults);
 switch (requestCode) {
  // requestCode即所聲明的權(quán)限獲取碼,在checkSelfPermission時傳入
  case BAIDU_READ_PHONE_STATE:
   //如果用戶取消,permissions可能為null.
   if (grantResults[0] == PERMISSION_GRANTED && grantResults.length > 0) { //有權(quán)限
    // 獲取到權(quán)限,作相應(yīng)處理
    getLocation();
   } else {
    showGPSContacts();
   }
   break;
  default:
   break;
 }
}

onRequestPermissionsResult 這個方法主要是動態(tài)獲取6.0權(quán)限,返回時的回調(diào),我這里需求是獲取權(quán)限之后獲取到當(dāng)前位置的經(jīng)緯度詳細(xì)信息

3.下面是當(dāng)點擊獲取GPS定位,跳轉(zhuǎn)到系統(tǒng)開關(guān),ActivityResult回調(diào),我這里做的是必須要開啟GPS權(quán)限,沒有開啟會一直讓用戶開啟權(quán)限,怎么決定,看具體需求

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
 super.onActivityResult(requestCode, resultCode, data);
 switch (requestCode) {
  case PRIVATE_CODE:
    showContacts();
   break;

 }
}

4.動態(tài)權(quán)限設(shè)置添加多條權(quán)限

static final String[] LOCATIONGPS = new String[]{Manifest.permission.ACCESS_COARSE_LOCATION, 
  Manifest.permission.ACCESS_FINE_LOCATION, 
  Manifest.permission.READ_PHONE_STATE};

注:代碼很詳細(xì)!基礎(chǔ)知識寫的不好,大佬勿噴,謝謝!

以上這篇Android6.0獲取GPS定位和獲取位置權(quán)限和位置信息的方法就是小編分享給大家的全部內(nèi)容了,希望能給大家一個參考,也希望大家多多支持創(chuàng)新互聯(lián)。


當(dāng)前文章:Android6.0獲取GPS定位和獲取位置權(quán)限和位置信息的方法
鏈接URL:http://weahome.cn/article/iejjdg.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部