I'm implementing my own AdapterView but I have a problem caused by the fact that I don't seem able to set this AdapterView as parent to views it gets from an Adapter.
This gives me problems such as not being able to invalidate views in the AdapterView, nothing will happen if the view doesn't have a parent. I don't seem to have access to any of the functions other AdapterViews have access to in the platform, such as assignParent and the mParent field in View. The only solution I have so far is to not extend AdapterView, and instead extend ViewGroup, and use addView(...) to make my ViewGroup the parent of added views. Is there a solution allowing you to create your own AdapterViews and adding views to the hierarchy, thus enabling invalidate(), etc. on the added views? --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

