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>
感謝您的回覆。如果我們不是針對平板電腦,那麼我們可以創造價值 - sw160,values-sw240,values-sw320&values-sw480? – user3332515
技術上它應該工作!但我沒有測試過你的場景。請注意,SW僅支持版本爲3.2+的Android操作系統。 –
Chandan