Android TabActivity cannot work properly. bindService Solution

Source: Internet
Author: User

During Android development, we are likely to use TabActivity for development. If your program needs to bind a Service to each Activity in TabHost of TabActivity, we usually perform the bind operation in the onCreate () method of the Activity corresponding to the Tab page. However, the practice shows that this method cannot achieve the binding effect. I checked it online, this vulnerability was found in Google Android Issue. Detailed defects are found here (Google Android Issue 2483). oliver on the third floor provides a positive solution.

Using getApplicationContext (). bindService instead of just bindService on your activity solves
The problem as it is using the higher level application context.

That is, if bindService is required for the Activity in TabHost of TabActivy, you need to call getApplicationContext () to obtain the Context Environment of the Activity to be normal bindService, that is, in onCreate () use this. getApplicationContext (). bindService ([args…]) Otherwise, bindService will always fail and return false.

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.