Jason Proctor wrote: > well, i'm sorry to bang on about this all the time. > > are there caveats to putting ListViews in tabs?
Nope. I have an application that has four ListViews in four tabs on its main activity. > the symptom i'm seeing is that a ListView will draw over the tabs in > the TabHost. Your ListViews then are not children of your FrameLayout, or your FrameLayout is not reserving space for the TabWidget, or something. > how could a child overwrite its parents in the view hierarchy? Happens all of the time. RelativeLayout and FrameLayout, notably, support Z-axis ordering. Widgets added later stack on top of widget added earlier. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Development Wiki: http://wiki.andmob.org --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---

