Use of ContentObserver for android

Source: Internet
Author: User

1. ContentObserver is used to observe (capture) the changes of data caused by a specific Uri, and then perform some corresponding processing. When the Uri observed by ContentObserver changes, it will be triggered. In terms of concept, ContentObserver is particularly suitable for monitoring system data changes, such as database changes or any other Uri that has been registered in the UriMatcher class, such as Settings. system. ACCELEROMETER_ROTATION, which can monitor the direction of the System screen. Ii. Use 1. Create

MObserver = new ContentObserver (new Handler () {public void onChange (boolean selfChange) {updateScreenRotationBtn ();}};
2. Registration
ContentResolver cr = getContentResolver (); Uri tmp = Settings. System. getUriFor (Settings. System. ACCELEROMETER_ROTATION); cr. registerContentObserver (tmp, false, mObserver );




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.