> To me, it looks like it calculates the height needed for the > TableLayout and then just adds the title above it which pushes the > entire layout down and hence, some stuff gets hidden. > Is this an issue and if yes, was it there in the old SDK? > What would be a workaround?
Your content is simply too large for the screen. You should put your TableLayout inside a ScrollView. > 2) My second question is regarding a TableRow. By default, the > layout_height for a table row and its children is set to WRAP_CONTENT. > If i need the row's layout_height property to be set to FILL_PARENT, > how can i do that? > Is it possible? or is there a possible workaround? You can't, because in this case you would see only one row at a time. You should use a LinearLayout to do this. -- Romain Guy www.curious-creature.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] Announcing the new Android 0.9 SDK beta! http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

