2014-02-20 49 views
0

我試圖做一個調查問題的佈局,它在我的設備上正常工作,但單選按鈕文本之間的邊距在更好的屏幕分辨率設備上減少。MarginTop Android中不同屏幕密度的單選按鈕之間的頂部

我已經嘗試過創建不同的DIMENS它的作品,但我不知道如何根據不同尺寸縮放邊距。

請建議我需要創建什麼樣的屏幕大小值 - swXXX文件夾,以及我定義的DIMEN的縮放比例。

感謝

enter code here 
<?xml version="1.0" encoding="utf-8"?> 
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" 
android:layout_height="match_parent" > 

<TextView 
    android:id="@+id/tv_1" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentTop="true" 
    android:layout_centerHorizontal="true" 
    android:layout_marginTop="10dp" 
    android:text="How often do you use it?" 
    android:textSize="15sp" /> 

<RadioGroup 
    android:id="@+id/rg_1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:layout_alignLeft="@+id/tv_1" 
    android:layout_below="@+id/tv_1" > 

    <RadioButton 
     android:id="@+id/rb_once" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="5dp" 
     android:layout_marginTop="15dp" 
     android:button="@drawable/radio_btn" 
     android:checked="true" 
     android:text="Once" /> 

    <RadioButton 
     android:id="@+id/rb_daily" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/rb_once" 
     android:layout_marginLeft="5dp" 
     android:layout_marginTop="5dp" 
     android:button="@drawable/radio_btn" 
     android:text="Daily" /> 

    <RadioButton 
     android:id="@+id/rb_weekly" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/rb_daily" 
     android:layout_marginLeft="5dp" 
     android:layout_marginTop="5dp" 
     android:button="@drawable/radio_btn" 
     android:text="Weekly" /> 

    <RadioButton 
     android:id="@+id/rb_monthly" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_below="@+id/rb_weekly" 
     android:layout_marginLeft="5dp" 
     android:layout_marginTop="5dp" 
     android:button="@drawable/radio_btn" 
     android:text="Monthly" /> 
</RadioGroup> 

<ImageView 
    android:id="@+id/fb_share" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentBottom="true" 
    android:layout_centerHorizontal="true" 
    android:layout_margin="10dp" 
    android:src="@drawable/facebook_share" /> 

<ImageView 
    android:id="@+id/history" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentLeft="true" 
    android:layout_alignTop="@+id/fb_share" 
    android:layout_marginLeft="10dp" 
    android:src="@drawable/history" /> 

<ImageView 
    android:id="@+id/info" 
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content" 
    android:layout_alignParentRight="true" 
    android:layout_alignTop="@+id/fb_share" 
    android:layout_marginRight="10dp" 
    android:src="@drawable/info" /> 



<RelativeLayout 
    android:layout_width="match_parent" 
    android:layout_height="wrap_content" 
    android:layout_above="@+id/fb_share" 
    android:layout_below="@+id/rg_1" 
    android:layout_centerHorizontal="true" > 

    <Button 
     android:id="@+id/send" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:layout_centerVertical="true" 
     android:background="@drawable/red_btn" 
     android:fontFamily="Roboto-Italic" 
     android:text="SAVE" 
     android:textColor="#ffffff" /> 
</RelativeLayout> 



</RelativeLayout> 

回答

0

你需要創建你的靶向價值觀swXXXX文件夾WRT設備。即,如果您要使用最小寬度爲600的平板電腦,則需要創建值-sw600等。

在佈局文件,單選按鈕的變化的聲明如下:

<RadioButton 
     android:id="@+id/rb_once" 
     android:layout_width="wrap_content" 
     android:layout_height="wrap_content" 
     android:layout_marginLeft="@dimen/left_margin" 
     android:layout_marginTop="@dimen/top_margin" 
     android:button="@drawable/radio_btn" 
     android:checked="true" 
     android:text="Once" /> 

並保持dimen.xml特定於每個目標維度值下-swXXXX與具有相同的名稱,但對應於各個尺寸值尺寸的鍵。例如:

values/   
<dimen name="left_margin">5dp</dimen> 
<dimen name="left_margin">10dp</dimen> 

values-sw600/  
<dimen name="left_margin">20dp</dimen> 
<dimen name="left_margin">40dp</dimen> 
+0

感謝您的回覆。如果我們不是針對平板電腦,那麼我們可以創造價值 - sw160,values-sw240,values-sw320&values-sw480? – user3332515

+0

技術上它應該工作!但我沒有測試過你的場景。請注意,SW 僅支持版本爲3.2+的Android操作系統。 – Chandan

相關問題