有没有办法在Radio Circle和左边框之间留出空格。我尝试提供空白,但是它不起作用,我也尝试提供填充,但是它增加了文本和按钮之间的空间。
无线电xml代码:
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<RadioButton
android:id="@+id/chkIos"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginStart="@dimen/_12sdp"
android:layout_marginLeft="@dimen/_12sdp"
android:layout_marginEnd="@dimen/_5sdp"
android:layout_marginRight="@dimen/_5sdp"
android:layout_weight="1"
android:background="@drawable/option_layout"
android:button="@drawable/custom_checkbox"
android:gravity="center"
android:padding="@dimen/_12sdp"
android:text="1211asd3"
android:textColor="@color/black" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/option_layout"
android:button="@drawable/custom_checkbox"
android:layout_marginStart="@dimen/_42sdp"
android:padding="@dimen/_12sdp"
android:text="RadioButton2"
android:layout_marginLeft="@dimen/_42sdp" />
<!--<TextView-->
<!--android:layout_weight="1"-->
<!--android:layout_width="match_parent"-->
<!--android:layout_height="wrap_content" />-->
</RadioGroup>
</LinearLayout>
有人知道怎么做吗?