android - How to relocate to settings from app? -
i'm making application in eclipse wherein need activate gps. since can't activate gps through app, how can relocate user "settings>location access"?
you can launch following intent
after detect user has gps turned off:
intent intent = new intent(settings.action_location_source_settings); startactivity(intent);
Comments
Post a Comment