单选按钮以Android为中心的背景图像

时间:2014-06-14 18:34:05

标签: android android-layout android-radiobutton

我需要将我的单选按钮放在背景图像中,默认情况下它与屏幕左边对齐。有人有想法吗?

这是我目前的代码 单选按钮组内的3个无线电按钮首先具有图像背景

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background"
android:orientation="vertical" 
<LinearLayout
    android:id="@+id/LinearLayout1"
    android:layout_width="match_parent"
    android:layout_height="62dp"
    android:layout_weight="0.29"
    android:orientation="vertical"
    android:paddingLeft="30dp"
    android:paddingTop="20dp" >

    <RadioGroup
        android:id="@+id/radioGroup1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_above="@+id/fbplacename"
        android:layout_alignParentLeft="true"
        android:layout_weight="1.17"
        android:orientation="horizontal" >

        <RadioButton
            android:id="@+id/radio0"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_gravity="center_vertical"
            android:layout_weight="0.58"
            android:background="@drawable/hart"
            android:gravity="center" />

        <RadioButton
            android:id="@+id/radio1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.90"
            android:paddingLeft="10dp" />

        <RadioButton
            android:id="@+id/radio2"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.65"
            android:paddingLeft="10dp" />
    </RadioGroup>
</LinearLayout>

0 个答案:

没有答案