[android-developers] Layout problem related to RelativeView and ListView

2011-12-01 Thread Ren Wen shan
Hi, I'm trying to make a layout that contains a List and a button. To make the button on the bottom, I'm using android:layout_alignParentBottom=true android:gravity=center|bottom in a RelativeView It works fine when the list is short, however, once the length of the list beyond the screen's

[android-developers] Layout problem related to RelativeView and ListView

2011-12-01 Thread Vincent
Hi, I'm trying to make a layout that contains a List and a button. To make the button on the bottom, I'm using android:layout_alignParentBottom=true android:gravity=center|bottom in a RelativeView It works fine when the list is short, however, once the length of the list beyond the screen's

Re: [android-developers] Layout problem related to RelativeView and ListView

2011-12-01 Thread Mark Murphy
Use android:layout_alignParentBottom=true on the button. Use android:layout_above=... on the list, where ... is the android:id of the button. On Tue, Nov 29, 2011 at 8:57 PM, Ren Wen shan renws1...@gmail.com wrote: Hi, I'm trying to make a layout that contains a List and a button. To make the