2011-08-30 106 views
0

在我的应用程序中,我使用相对布局design.in一个活动我有四个按钮在屏幕的底部。我的xml代码(Land Scape)不适合所有设备屏幕。它在按钮之间有更多的空间,如图所示。如何设计适合所有分辨率屏幕(横向)的布局。Android中的相对布局问题

布局图像是: enter image description here

我的XML:

<RelativeLayout android:id="@+id/relativeLayout1" 
android:layout_width="fill_parent" android:layout_height="fill_parent" 
android:background="#0000FF" 
xmlns:android="http://schemas.android.com/apk/res/android"> 


<RelativeLayout android:layout_width="fill_parent" 
    android:layout_gravity="bottom" android:layout_alignParentBottom="true" 
    android:background="@drawable/applicarion_bar" android:layout_height="wrap_content" 
    android:id="@+id/relativeLayout4"> 

     <ImageButton android:id="@+id/homeimageButton2" 
      android:layout_alignParentLeft="true" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:background="@drawable/festival_btn" /> 

     <ImageButton android:layout_height="wrap_content" 
      android:layout_toRightOf="@+id/homeimageButton2" 
      android:layout_marginLeft="60dp" 
      android:layout_width="wrap_content" android:background="@drawable/search_btn" 
      android:id="@+id/homeimageButton3"></ImageButton> 
     <TextView android:id="@+id/homecalendar4" android:text="MAR 20" 
      android:layout_toRightOf="@+id/homeimageButton3" 
      android:gravity="center" 
      android:textSize="10dp" 
      android:layout_marginLeft="60dp" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:background="@drawable/calendar_btn" /> 
     <ImageButton android:id="@+id/homeimageButton5" 
      android:layout_alignParentRight="true" 
      android:layout_marginLeft="10dp" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:background="@drawable/favorite_btn" /> 

</RelativeLayout> 

+0

而不是RelativeLayout,你可以使用Linearlayout? – Venky

回答

1

更换你relativeLayout4为

<LinearLayout android:id="@+id/put_id_of_ll" 
     android:orientation="horizontal" android:background="#012C58" 
     android:paddingLeft="4.0dip" android:paddingTop="5.0dip" 
     android:paddingRight="4.0dip" android:paddingBottom="1.0dip" 
     android:layout_width="fill_parent" android:layout_height="wrap_content" 
     android:layout_alignParentBottom="true"> 
       <ImageButton android:id="@+id/homeimageButton2" 
       android:layout_width="0.0dip" 
       android:text="ImageButton" 
       android:background="@drawable/festival_btn" 
       android:layout_weight="1.0" 
       android:layout_height="wrap_content" 
       android:padding="10dp" 
       android:layout_marginBottom="3dip" 
       android:layout_marginLeft="2dip" /> 
      <ImageButton android:id="@+id/homeimageButton3"  
android:background="@drawable/search_btn" 
       android:layout_width="0.0dip" 
       android:text="btn2" 
       android:layout_weight="1.0" 
       android:layout_height="wrap_content" 
       android:padding="10dp" 
       android:layout_marginBottom="3dip" 
       android:layout_marginLeft="2dip" /> 
      <TextView android:id="@+id/homecalendar4" android:text="MAR 20" 
       android:layout_width="0.0dip" 
       android:layout_weight="1.0" 
       android:layout_height="wrap_content" 
       android:padding="10dp" 
       android:layout_marginBottom="3dip" 
       android:layout_marginLeft="2dip" /> 
      <ImageButton android:id="@+id/homeimageButton5" 
       android:layout_width="0.0dip" 
       android:text="btn4" 
       android:background="@drawable/favorite_btn" 
       android:layout_weight="1.0" 
       android:layout_height="wrap_content" 
       android:padding="10dp" 
       android:layout_marginBottom="3dip" 
       android:layout_marginLeft="2dip" /> 
     </LinearLayout> 

它将工作。

编码愉快:)

+0

谢谢,并延迟 –

+0

@murali_ma欢迎!并尝试提出答案,这对我们有好处。 :) –

0

使用线性布局而不是相对布局,使用下面码

<RelativeLayout android:id="@+id/relativeLayout1" 
android:layout_width="fill_parent" android:layout_height="fill_parent" 
android:background="#0000FF" 
xmlns:android="http://schemas.android.com/apk/res/android"> 


<LinearLayout android:layout_width="fill_parent" 
    android:layout_gravity="bottom" android:orientation="horizontal" 
    android:background="@drawable/applicarion_bar" android:layout_height="wrap_content" 
    android:id="@+id/relativeLayout4"> 

     <ImageButton android:id="@+id/homeimageButton2" 
      android:layout_alignParentLeft="true" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:layout_weight="1" 
      android:background="@drawable/festival_btn" /> 

     <ImageButton android:layout_height="wrap_content" 
      android:layout_toRightOf="@+id/homeimageButton2" 
      android:layout_weight="1" 
      android:layout_marginLeft="60dp" 
      android:layout_width="wrap_content" android:background="@drawable/search_btn" 
      android:id="@+id/homeimageButton3"></ImageButton> 

     <TextView android:id="@+id/homecalendar4" android:text="MAR 20" 
      android:layout_toRightOf="@+id/homeimageButton3" 
      android:gravity="center" 
      android:textSize="10dp" 
      android:layout_marginLeft="60dp" 
      android:layout_weight="1" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:background="@drawable/calendar_btn" /> 

     <ImageButton android:id="@+id/homeimageButton5" 
      android:layout_alignParentRight="true" 
      android:layout_marginLeft="10dp" 
      android:layout_weight="1" 
      android:layout_width="wrap_content" android:layout_height="wrap_content" 
      android:background="@drawable/favorite_btn" /> 

</LinearLayout> 

</RelativeLayout> 
0

尝试使用线性布局,所有的观点给予同等权重。