Page 112 - 3-3
P. 112
android:text="No"
android:textColor="#00AAFF"
android:textSize="30dp"/>s
// 물을 안줄 라디오 버튼
</RadioGroup>
</RelativeLayout>
</RelativeLayout>
order.xml
<?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:background="#ffeeee" >
<ImageButton
android:id="@+id/lightBtn"
android:layout_width="80dp"
android:layout_height="80dp"
android:layout_alignParentRight="true"
android:background="@drawable/light"/>
// 스마트홈 버튼
<ImageButton
android:id="@+id/backBtn"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_alignBottom="@id/lightBtn"
android:layout_margin="20dp"
android:background="@drawable/back" />
// 뒤로 돌아가기 버튼
<ImageView
android:id="@+id/type"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/backBtn"
android:layout_below="@id/backBtn"
android:layout_marginRight="20dp"
android:background="@drawable/type"/>
// 사료의 종류를 보여주는 이미지 뷰
<ImageView
android:id="@+id/amount"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/type"
android:layout_below="@id/type"
- 112 -