[android-developers] Re: Stacking a ListView with other widgets below?

2009-11-14 Thread Mark Wyszomierski
One more question on this - it seems like if we use a header or footer view - then our activity can not add any other views? Example: LinearLayout ListView // with header and footer views. /LinearLayout the above works perfectly with focus getting routed correctly etc. The focus acts

[android-developers] Re: Stacking a ListView with other widgets below?

2009-11-14 Thread Mark Wyszomierski
This is problem is probably related to this ListView bug: http://code.google.com/p/android/issues/detail?id=4255#c2 On Nov 14, 1:07 pm, Mark Wyszomierski mar...@gmail.com wrote: One more question on this - it seems like if we use a header or footer view - then our activity can not add any other

Re: [android-developers] Re: Stacking a ListView with other widgets below?

2009-11-13 Thread Romain Guy
When you add the footer to the listview you need to indicate it can receive focus: http://d.android.com/reference/android/widget/ListView.html#setItemsCanFocus(boolean) On Fri, Nov 13, 2009 at 3:27 PM, Mark Wyszomierski mar...@gmail.com wrote: Hi Romain, If I use a footer view, it can get

[android-developers] Re: Stacking a ListView with other widgets below?

2009-11-13 Thread Mark Wyszomierski
Romain, thanks, that saved me. On Nov 13, 6:34 pm, Romain Guy romain...@google.com wrote: When you add the footer to the listview you need to indicate it can receive focus:http://d.android.com/reference/android/widget/ListView.html#setItemsC...) On Fri, Nov 13, 2009 at 3:27 PM, Mark