In android layout how do I align elements underneath a listview regardless of the listview's height -
i've got listview , want there 2 textviews , 2 buttons underneath (3 of may hidden in code). every single layout tried either results in 4 elements being anchored bottom of screen when listview few lines, or getting pushed off altogether if listview gets big enough. ideas?
it sounds you've used android:layout_below="@id/listvieid"
, android:layout_alignparentbottom="true"
these give results mentioned. sounds want addfooterview(view v)
note docs say
note: call before calling setadapter. listview can wrap supplied cursor 1 account header , footer views.
Comments
Post a Comment