Android examples for Hardware:Gps
redirect To GPS Settings
//package com.java2s; import android.app.Activity; import android.content.Intent; public class Main { public static void redirectToGPSSettings(Activity activity, int REQUEST_CODE) { Intent callGPSSettingIntent = new Intent( android.provider.Settings.ACTION_LOCATION_SOURCE_SETTINGS); activity.startActivityForResult(callGPSSettingIntent, REQUEST_CODE); }//from w w w . java 2 s .c o m }