[android-developers] Edittext fill up space inside scrollpane and releative layout

2011-03-19 Thread Patrick
Hallo! I'm suffering again a layout issue. My requirnments are: * header which is always visible * scrollview containing a table (with 2 edittexts (single line) and a edittextfield, that is multisline and should fill up all the rest of the screen (except a button at the bottom of the screen).

Re: [android-developers] Edittext fill up space inside scrollpane and releative layout

2011-03-19 Thread Kostya Vasilyev
If it's the view I think it is, try setting its height to fill_parent, and either get rid of its enclosing TableRow, or set its height to fill_parent as well. And layout_span=4 seems excessive - I don't see any rows with 4 columns in your layout. -- Kostya 19.03.2011 19:31, Patrick пишет:

Re: [android-developers] Edittext fill up space inside scrollpane and releative layout

2011-03-19 Thread Patrick
Unfortunately didn't work. I tried setting a * android:layout_height=fill_parent* to both, the table row and the EditText itself. However there was no change... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Edittext fill up space inside scrollpane and releative layout

2011-03-19 Thread Kostya Vasilyev
What happens if you get rid of that last TableRow, so that the EditText is directly inside the TableLayout? 19.03.2011 20:33, Patrick ?: Unfortunately didn't work. I tried setting a /android:layout_height=fill_parent/ to both, the table row and the EditText itself. However there was no

Re: [android-developers] Edittext fill up space inside scrollpane and releative layout

2011-03-19 Thread Patrick
Thanks that did the trick. I never thought of putting a EditText directly into TableLayout. But it really worked. Thanks for your help... -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to