How can I return back to my Activity from GPS settings window

后端 未结 3 649
悲哀的现实
悲哀的现实 2020-12-10 03:53

I am having a problem in my Activity, which can take the control to the android mobile GPS settings to have user to switch on/off the GPS, But I am unable to retrun back to

3条回答
  •  萌比男神i
    2020-12-10 04:30

    On back press from the settings location activity, On Resume is called from the activity that called startActivityForResult(new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS), 1);

    Therefore from there you can check if location has been enabled by

    `if(lm.isProviderEnabled(LocationManager.GPS_PROVIDER )) {//add your logic here }`
    

提交回复
热议问题