Android uses a program to enable or disable GPS

Source: Internet
Author: User

Android provides the setting. Secure class. The official explanation of this class is to obtain the property value set by the system, but it cannot be modified. You need to set the property value through the system ui or a special API. However, after 2.2, setting. Secure added the islocationproviderenabled and setlocationproviderenabled methods. The test showed that the islocationproviderenabled method obtained the GPS status, but if you modify the GPS status:

Settings. Secure. setlocationproviderenabled (getcontentresolver (), locationmanager. gps_provider, true );

In addition, the following permissions are added to the mainfest file:

<Uses-Permission Android: Name = "android. Permission. write_settings"/>
<Uses-Permission Android: Name = "android. Permission. write_secure_settings"/>

ProgramRen will report the following error:

 

: Caused by: Java. Lang. securityexception: Permission Denial: writing to secure settings requires Android. Permission. write_secure_settings

The final solution is as follows:

Intent gpsintent = new intent ();
Gpsintent. setclassname ("com. Android. Settings ",
"Com. Android. settings. widget. settingsappwidgetprovider ");
Gpsintent. addcategory ("android. Intent. Category. Alternative ");
Gpsintent. setdata (URI. parse ("custom: 3 "));
Try {
Pendingintent. getbroadcast (this, 0, gpsintent, 0). Send ();
}
Catch (canceledexception e ){
E. printstacktrace ();
}

In this way, the function of modifying the GPS status is achieved. If this method is developed, the GPS will be disabled, and vice versa.

Reference: http://www.learningandroid.net/blog/advance/programmable-toggle-gps/

From: http://mycoding.iteye.com/blog/1275162

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.