android - Fit to screen all widgets -


this screen shots. want buttons display in fit screen devices.

i want remove space after button6 , fit buttons in screen.

image

<linearlayout     android:layout_width="fill_parent"     android:layout_height="fill_parent"     android:layout_weight="1"     android:orientation="vertical" >      <button         android:id="@+id/button1"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_weight="1"         android:text="button" />      <button         android:id="@+id/button2"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_weight="1"         android:text="button" />      <button         android:id="@+id/button3"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_weight="1"         android:text="button" />      <button         android:id="@+id/button4"         android:layout_width="wrap_content"         android:layout_height="wrap_content"         android:layout_weight="1"         android:text="button" /> </linearlayout> 

Comments

Popular posts from this blog

django - How can I change user group without delete record -

java - Need to add SOAP security token -

java - EclipseLink JPA Object is not a known entity type -