개발/Mobile

안드로이드 스튜디오 : 앱 프로그래밍 방과후 Chapter 6(1)

hojak99 2016. 1. 13. 17:25




<?xml version="1.0" encoding="utf-8"?>
<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:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="save"
android:id="@+id/button"
android:layout_alignParentTop="true"
android:layout_alignParentStart="true" />

<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="save"
android:id="@+id/button2"
android:layout_alignTop="@+id/button"
android:layout_toEndOf="@+id/button" />

<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Frozen"
android:layout_below="@+id/button"
android:layout_alignParentStart="true"
android:id="@+id/editText" />

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New CheckBox"
android:id="@+id/checkBox"
android:layout_below="@+id/editText"
android:layout_alignParentStart="true" />

<CheckBox
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="New CheckBox"
android:id="@+id/checkBox2"
android:layout_below="@+id/checkBox"
android:layout_alignParentStart="true" />

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/checkBox2"
android:id="@+id/Rdio1"
android:text="라디오 버튼"/>

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/Rdio2"
android:layout_below="@id/Rdio1"
android:text="라디오 버튼"/>

<RatingBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/rating1"
android:layout_below="@+id/Rdio2"
android:layout_alignParentStart="true" />

<ToggleButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/rating1"
android:id="@+id/Toggle1" />

<ToggleButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@id/Toggle1"
android:drawableLeft="@drawable/mybutton" />



</RelativeLayout>


반응형