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

溫馨提示×

溫馨提示×

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

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

Android應用中怎么監聽手機GPS的打開狀態

發布時間:2020-12-04 17:31:11 來源:億速云 閱讀:680 作者:Leah 欄目:移動開發

Android應用中怎么監聽手機GPS的打開狀態?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。

Android 監聽手機GPS打開狀態實現代碼

GPS_Presenter

package com.yiba.core;
import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;
import android.content.IntentFilter;
import android.location.LocationManager;

/**
 * Created by ${zhaoyanjun} on 2017/3/29.
 * GPS 開關監聽
 */

public class GPS_Presenter {
  private Context mContext ;
  private Receiver receiver ;
  private GPS_Interface mInterface ;
  private String GPS_ACTION = "android.location.PROVIDERS_CHANGED" ;


  public GPS_Presenter(Context context , GPS_Interface mInterface ){
    this.mContext = context ;
    this.mInterface = mInterface ;

    observeWifiSwitch();
  }

  private void observeWifiSwitch(){
    IntentFilter filter = new IntentFilter();
    filter.addAction( GPS_ACTION );
    receiver = new Receiver() ;
    mContext.registerReceiver(receiver, filter);
  }

  /**
   * 釋放資源
   */
  public void onDestroy(){
    if ( receiver != null ){
      mContext.unregisterReceiver( receiver );
    }
    if (mContext!=null){
      mContext = null;
    }
  }

  class Receiver extends BroadcastReceiver {

    @Override
    public void onReceive(Context context, Intent intent) {
      if (intent.getAction().matches( GPS_ACTION )) {
         if ( mInterface != null ){
           mInterface.gpsSwitchState( gpsIsOpen( context ));
         }
      }
    }
  }

  /**
   * 判斷GPS是否開啟,GPS或者AGPS開啟一個就認為是開啟的
   * @param context
   * @return true 表示開啟
   */
  public boolean gpsIsOpen(final Context context) {
    LocationManager locationManager
        = (LocationManager) context.getApplicationContext().getSystemService(Context.LOCATION_SERVICE);
    // 通過GPS衛星定位,定位級別可以精確到街(通過24顆衛星定位,在室外和空曠的地方定位準確、速度快)
    boolean gps = locationManager.isProviderEnabled(LocationManager.GPS_PROVIDER);
    // 通過WLAN或移動網絡(3G/2G)確定的位置(也稱作AGPS,輔助GPS定位。主要用于在室內或遮蓋物(建筑群或茂密的深林等)密集的地方定位)
    boolean network = locationManager.isProviderEnabled(LocationManager.NETWORK_PROVIDER);
    if (gps || network) {
      return true;
    }

    return false;
  }
}

GPS_Interface 回調接口

package com.yiba.core;

/**
 * Created by ${zhaoyanjun} on 2017/3/29.
 * gps 開關監聽
 */

public interface GPS_Interface {
  void gpsSwitchState( boolean gpsOpen );
}

在 Activity 中使用

package com.yiba.core;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.widget.Toast;

public class MainActivity extends AppCompatActivity implements GPS_Interface {

  private GPS_Presenter gps_presenter ;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    gps_presenter = new GPS_Presenter( this , this ) ;

  }

  @Override
  protected void onDestroy() {
    super.onDestroy();

    //釋放資源
    if ( gps_presenter != null ){
      gps_presenter.onDestroy();
    }
  }

  @Override
  public void gpsSwitchState(boolean gpsOpen) {
    if ( gpsOpen ){
      Toast.makeText(this, " 手機GPS 打開", Toast.LENGTH_SHORT).show();
    }else {
      Toast.makeText(this, " 手機GPS 關閉", Toast.LENGTH_SHORT).show();
    }
  }
}

關于Android應用中怎么監聽手機GPS的打開狀態問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。

向AI問一下細節

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

AI

杭州市| 竹溪县| 深州市| 江油市| 玛曲县| 应城市| 黑水县| 定陶县| 兴城市| 会理县| 东港市| 襄垣县| 长治县| 新余市| 融水| 新泰市| 青海省| 苍梧县| 秀山| 翼城县| 南安市| 漯河市| 蒙阴县| 年辖:市辖区| 修文县| 咸阳市| 都兰县| 恭城| 砚山县| 茶陵县| 平邑县| 宜兴市| 清水河县| 元江| 福泉市| 阳信县| 阿坝| 忻城县| 建德市| 张家口市| 吉木乃县|