I am using the SemiClosedSlidingDrawer in my app.
Quick explain:
- Sliding drawer has handle and content part
- The content part is partially opened at view creation
Problem:
When I create view the content part is inflated and cached then showing partially. If I perform any operation on the main content. It reflected to the content part of sliding drawer. Even it is partially viewable.
I managed to found the answer that the content is not set to GONE so only it is receiving touch events.
I have to set the content GONE after all inflation caching completed. So I need to know
Which View creation Lifecycle method called last? or Where to set ChildView's Visibility properties?
I can refer my slidingDrawer's content in activity and set to GONE it is working fine. But there should be a proper way to fix this issue.