Very strange problem: visibility of dynamically created view settings does not work (Android, resolved)

Source: Internet
Author: User

During Android development today, I encountered a very strange problem. In a viewgroup, I dynamically created two custom views and then performed the setvisibility operation on them, the custom view does not respond at all.

 

The possible pseudocode is like this:

Myview extends view {
/**************/

Inflate (context, res, rootview );

}

// Call
View V1 = new myview ();
View v2 = new myview ();

V1.setvisibility (view. Gone); // does not work at all
V2.setvisibility (view. Visible );

 

PS: the problem has been solved. It turns out that the method for binding XML is different. You can solve this problem by changing the method:

// Not OK
Inflate (context, res, rootview );

// OK
_ View = layoutinflater. From (context). Inflate (Res, null );
Rootview. addview (_ view );

// The interface can be displayed normally in either of the two modes. The root cause is unknown.

 

 

 

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.