[android-developers] vertical scroll

2011-08-22 Thread vineeshkc
hi, how vertical scroll bar for TableLayout in android ?? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

Re: [android-developers] vertical scroll

2011-08-22 Thread Ratheesh Valamchuzhy
Hi Vineesh U can use a scroll view , with set the property of scroll view height to fill parent ?xml version=1.0 encoding=utf-8? ScrollView android:id=@+id/widget31 android:layout_width=fill_parent android:layout_height=fill_parent android:background=#2F4F4F

Re: [android-developers] vertical scroll

2011-08-22 Thread Ratheesh Valamchuzhy
Also use the table layout property to android:scrollbars=vertical -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

Re: [android-developers] vertical scroll

2011-08-22 Thread vineeshkc
thanks Ratheesh Valamchuzhy for your reply actually am looking horizontal scrolling i find out the problem by using android:oriantation=horizontal in the attribute On Mon, Aug 22, 2011 at 12:39 PM, Ratheesh Valamchuzhy android...@gmail.com wrote: Also use