Tôi đang cố gắng để có được hiệu ứng radiobutton cho các nút thông thường trong Android
Tôi có một nút radio android đơn giản bên dưới
Mã cho điều này là ::
Activity_main.xml
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >
<RadioGroup
android:id="@+id/radioGroup1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true" >
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="RadioButton1" />
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton2" />
<RadioButton
android:id="@+id/radio2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="RadioButton3" />
</RadioGroup>
</RelativeLayout>
Cách tùy chỉnh nó như sau ::
Cảm ơn !
[EDIT] sử dụng mã từ một trong các câu trả lời
Nhưng tên nút bị lu mờ bởi tùy chọn chọn làm thế nào để loại bỏ nó?
{EDIT} thay đổi nhiều hơn
Thay đổi Finall ít nhất tôi nên biết nút nào tôi đã chọn trong số ba nút radio .... có thể nhận được như dưới đây không?