안 드 로 이 드 감청 휴대 전화 GPS 오픈 상태 구현 코드

3927 단어 Android휴대폰GPS
안 드 로 이 드 감청 휴대 전화 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_인터페이스 리 턴 인터페이스

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();
    }
  }
}

읽 어 주 셔 서 감사합니다. 여러분 에 게 도움 이 되 기 를 바 랍 니 다.본 사이트 에 대한 여러분 의 지지 에 감 사 드 립 니 다!

좋은 웹페이지 즐겨찾기