Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="vertical" >
- <TextView
- android:id="@+id/textView"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
- android:text="Contoh RadioButton Android"
- android:textSize="20sp" />
- <TextView
- android:id="@+id/textView2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginBottom="16dp"
- android:text="Pilih makanan favorit:"
- android:textSize="15sp" />
- <RadioGroup
- android:id="@+id/rg"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- >
- <RadioButton
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:id="@+id/rbbaso"
- android:text="Baso Tahu"
- />
- <RadioButton
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:id="@+id/rbMie"
- android:text="Mie Ayam"
- />
- </RadioGroup>
- <TextView
- android:layout_width="fill_parent"
- android:layout_height="fill_parent"
- android:gravity="center|bottom"
- android:text="okedroid.com"
- android:textColor="#2ecc71"
- android:textSize="29sp" />
- </LinearLayout>
Advertisement
Add Comment
Please, Sign In to add comment