Discussion: how to modify the android timeout sleep time

Source: Internet
Author: User

By default, the android system does not operate for more than n minutes, and the screen is automatically closed and sleep.
In fact, some projects require timeout and not sleep.Program, We can achieve this through the power management setting status,
If you want to set the timeout time for all applications, you can refer to the following methods:

Method 1. AdjustmentCode:
Settings. system. putint (getcontentresolver (), Android. provider. settings. system. screen_off_timeout,-1 );
Permission:<Uses-Permission Android: Name = "android. Permission. write_settings"/>

Method 2: Adjust the database:
These settings of Android are stored in the SQL database, that is, you can directly modify the database to prevent android from sleep.
Sqlite3/data/COM. Android. providers. Settings/databases/settings. DB

Specific SQL:
Update System set value = '-1' where name = 'screen _ off_timeout ';

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.