최대 1 분 소요

<?xml version=”1.0” encoding=”utf-8”?>

<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”

android:orientation=”vertical”

android:layout_width=”fill_parent”

android:layout_height=”fill_parent”>

<CheckBox

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”진동모드”/>

<RadioGroup

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”>

<RadioButton

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”빨간색”/>

<RadioButton

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”녹색”/>

<RadioButton

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:text=”파란색”/>

</RadioGroup>

</LinearLayout>