2013-06-29 143 views
0

在我的應用程序中有六個按鈕,屏幕尺寸是4.65「720p(720X1280:xhdpi),設備從正常佈局文件夾中獲取此分辨率。當我在device.it上運行它時顯示如下圖所示的圖像。如何設置這六個按鈕適合屏幕根據佈局寬度和height.I不知道solution.Can任何一個知道的請幫我解決這個問題。Android中的多屏幕支持?

我的XML編碼

<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:id="@+id/home_xml" 
android:layout_width="match_parent" 
android:layout_height="match_parent" 
android:background="#ffffff" > 

<Button 
    android:id="@+id/btn_login" 
    android:layout_width="101dp" 
    android:layout_height="193dp" 
    android:layout_alignParentLeft="true" 
    android:layout_below="@+id/imageView1" 
    android:layout_marginLeft="4dp" 
    android:layout_marginTop="78dp" 
    android:background="@drawable/login_button" /> 

<Button 
    android:id="@+id/btn_order" 
    android:layout_width="101dp" 
    android:layout_height="wrap_content" 
    android:layout_alignBottom="@+id/btn_login" 
    android:layout_alignTop="@+id/btn_login" 
    android:layout_marginLeft="3dp" 
    android:layout_toRightOf="@+id/btn_login" 
    android:background="@drawable/order_button" /> 

<Button 
    android:id="@+id/btn_abtus" 
    android:layout_width="101dp" 
    android:layout_height="wrap_content" 
    android:layout_alignBottom="@+id/btn_order" 
    android:layout_alignTop="@+id/btn_order" 
    android:layout_marginLeft="3dp" 
    android:layout_toRightOf="@+id/btn_order" 
    android:background="@drawable/aboutus_button" /> 

<Button 
    android:id="@+id/btn_outlet" 
    android:layout_width="100dp" 
    android:layout_height="198dp" 
    android:layout_alignLeft="@+id/btn_login" 
    android:layout_alignRight="@+id/btn_login" 
    android:layout_below="@+id/btn_login" 
    android:background="@drawable/outlets_button" /> 

<Button 
    android:id="@+id/btn_feedback" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignBottom="@+id/btn_outlet" 
    android:layout_alignLeft="@+id/btn_order" 
    android:layout_alignRight="@+id/btn_order" 
    android:layout_alignTop="@+id/btn_outlet" 
    android:background="@drawable/feedback_button" /> 

<Button 
    android:id="@+id/btn_games" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignBottom="@+id/btn_feedback" 
    android:layout_alignLeft="@+id/btn_abtus" 
    android:layout_alignRight="@+id/btn_abtus" 
    android:layout_alignTop="@+id/btn_feedback" 
    android:background="@drawable/games_button" /> 

<RelativeLayout 
    android:id="@+id/relativeLayout1" 
    android:layout_width="match_parent" 
    android:layout_height="44dp" 
    android:layout_alignParentRight="true" 
    android:layout_alignParentTop="true" 
    android:background="#98110e" > 
</RelativeLayout> 

enter image description here

+0

http://stackoverflow.com/questions/17357682/how-can-i-made-the-layout-that-will-work-in-both-tablet-and-phone/17357736#17357736 – Nirmal

回答

2

在這裏你去:

<?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="fill_parent" 
android:layout_height="fill_parent" 
android:orientation="vertical" > 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:orientation="horizontal" > 

    <Button 
     android:id="@+id/button3" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:text="Button" /> 

    <Button 
     android:id="@+id/button1" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:text="Button" /> 
</LinearLayout> 

<LinearLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_weight="1" 
    android:orientation="horizontal" > 

    <Button 
     android:id="@+id/button3" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:text="Button" /> 

    <Button 
     android:id="@+id/button1" 
     android:layout_width="fill_parent" 
     android:layout_height="fill_parent" 
     android:layout_weight="1" 
     android:text="Button" /> 
</LinearLayout> 

</LinearLayout> 

Layout_weight使得按鈕 「共享」 的空間。

+0

謝謝Stephane馬西斯。 – Yugesh