0
가능한 중복 :
Enable GPS programatically like Tasker자동으로 전화가 수신되는 GPS를 설정하는 방법
내가 전화를위한 코드가 및 연락처에서 전화를받을 수 있지만 내가 어떻게 GPS가 자동으로 활성화 할 수 있습니다 받은 전화 통화.
가능한 중복 :
Enable GPS programatically like Tasker자동으로 전화가 수신되는 GPS를 설정하는 방법
내가 전화를위한 코드가 및 연락처에서 전화를받을 수 있지만 내가 어떻게 GPS가 자동으로 활성화 할 수 있습니다 받은 전화 통화.
private void turnGPSOn(){
String provider = Settings.Secure.getString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
if(!provider.contains("gps")){ //if gps is disabled
final Intent poke = new Intent();
poke.setClassName("com.android.settings", "com.android.settings.widget.SettingsAppWidgetProvider");
poke.addCategory(Intent.CATEGORY_ALTERNATIVE);
poke.setData(Uri.parse("3"));
sendBroadcast(poke);
}
}
private void turnGPSOff(){
String provider = Settings.Secure.getString(getContentResolver(), Settings.Secure.LOCATION_PROVIDERS_ALLOWED);
if(provider.contains("gps")){ //if gps is enabled
final Intent poke = new Intent();
poke.setClassName("com.android.settings", "com.android.settings.widget.SettingsAppWidgetProvider");
poke.addCategory(Intent.CATEGORY_ALTERNATIVE);
poke.setData(Uri.parse("3"));
sendBroadcast(poke);
}
}
에 보이지 않았다