[android-developers] Re: Help: View Not Shown After TableLayout

2009-05-17 Thread efan
Yes, it works fine now after changed to height="wrap_content". Thanks to all replied. On May 16, 8:59 pm, Romain Guy wrote: > YourTableLayouthas height=fill_parent, it's therefore as tall as its > parent, so there's no more room left on screen to show the TextView. > > > > On Sat, May 16, 2009

[android-developers] Re: Help: View Not Shown After TableLayout

2009-05-16 Thread Raphael
On Sat, May 16, 2009 at 9:25 PM, Raphael wrote: > On Sat, May 16, 2009 at 8:59 PM, Romain Guy wrote: >> >> Your TableLayout has height=fill_parent, it's therefore as tall as its >> parent, so there's no more room left on screen to show the TextView. > > and to fix that add an android:layout_whei

[android-developers] Re: Help: View Not Shown After TableLayout

2009-05-16 Thread Raphael
On Sat, May 16, 2009 at 8:59 PM, Romain Guy wrote: > > Your TableLayout has height=fill_parent, it's therefore as tall as its > parent, so there's no more room left on screen to show the TextView. and to fix that add an android:layout_wheight=0 to the table layout and a android:layout_wheight=1

[android-developers] Re: Help: View Not Shown After TableLayout

2009-05-16 Thread Romain Guy
Your TableLayout has height=fill_parent, it's therefore as tall as its parent, so there's no more room left on screen to show the TextView. On Sat, May 16, 2009 at 2:58 PM, efan wrote: > > I need show some text description after a TableLayout but it is not > shown. > > Layout xml file like this