Re: [android-developers] Re: Problem in height of Listview

2010-10-04 Thread Rocky
thnx for replay, but its not working with list view. if i set the height=0dip, my entire list item gone. On Fri, Oct 1, 2010 at 9:42 PM, letlite letl...@gmail.com wrote: Set its height to 0 and give it a weight. android:layout_weight=1 android:layout_height=0dip

Re: [android-developers] Re: Problem in height of Listview

2010-10-04 Thread Rocky
Hi paulb, thanx for reply its working fine. I was stick at this point since long time. On Sun, Oct 3, 2010 at 7:37 PM, paulb pbizan...@gmail.com wrote: Hey Rocky, If you are still experiencing a problem with the layout, and the RelativeLayout does not work, you can use a solution along

Re: [android-developers] Re: Problem in height of Listview

2010-10-03 Thread paulb
Hey Rocky, If you are still experiencing a problem with the layout, and the RelativeLayout does not work, you can use a solution along the lines of: LinearLayout android:orientation=vertical android:layout_width=fill_parent android:layout_marginBottom=60dp

Re: [android-developers] Re: Problem in height of Listview

2010-10-01 Thread Rocky
Hi Bibek, if i'm using fill_parent, also it fill entire screen, and my bottom button goes off, (footer button not showing that case) is any dynamic approach, thr that i can set the height according to device, in java file (coding) --RKJ On Fri, Oct 1, 2010 at 12:14 PM, Kumar Bibek

Re: [android-developers] Re: Problem in height of Listview

2010-10-01 Thread Rocky
hi Bibek, still same problem, ListView android:id=@+id/ListView01 android:layout_height=wrap_content android:layout_weight=1 android:layout_width=fill_parent /ListView or ListView android:id=@+id/ListView01

Re: [android-developers] Re: Problem in height of Listview

2010-10-01 Thread Rocky
LinearLayout xmlns:android=http://schemas.android.com/apk/res/android; android:orientation=vertical android:layout_width=fill_parent android:layout_height=fill_parent include layout=@layout/tabbar android:layout_height=fill_parent / LinearLayout

Re: [android-developers] Re: Problem in height of Listview

2010-10-01 Thread Kostya Vasilyev
Use a relative layout. Set layout_alignParentBottom for the footer view, and use fill_parent for height of the list view. -- Kostya Vasilyev -- http://kmansoft.wordpress.com 01.10.2010 13:46 пользователь Rocky rkjhaw1...@gmail.com написал: LinearLayout

Re: [android-developers] Re: Problem in height of Listview

2010-10-01 Thread Rocky
RelativeLayout xmlns:android=http://schemas.android.com/apk/res/android; android:orientation=vertical android:layout_width=fill_parent android:layout_height=wrap_content ListView android:id=@+id/ListView01 android:layout_height=fill_parent