Page 109 - 3-3
P. 109

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"
                              android:background="@drawable/amount"/>
                                                                              // 밥의 양을 볼 이미지 뷰
                      <ImageView
                              android:id="@+id/water"
                              android:layout_width="wrap_content"
                              android:layout_height="wrap_content"
                              android:layout_alignLeft="@id/type"
                              android:layout_below="@id/amount"
                              android:layout_marginTop="10dp"
                              android:background="@drawable/water"/>
                                                                              // 물의 설정을 볼 이미지 뷰
                      <ImageButton
                              android:id="@+id/checkBtn"
                              android:layout_width="100dp"
                              android:layout_height="100dp"
                              android:layout_marginTop="30dp"
                              android:layout_below="@id/water"
                              android:layout_centerHorizontal="true"
                              android:background="@drawable/check"/>
                                                                      // 사료공급을 할 이미지 버튼
                      <RelativeLayout
                              android:id="@+id/rbtns"
                              android:layout_width="match_parent"
                              android:layout_height="wrap_content"
                              android:gravity="center"
                              android:layout_below="@id/lightBtn"
                              android:layout_alignLeft="@id/checkBtn"
                              android:layout_toRightOf="@+id/checkBtn">


                                                          - 109 -
   104   105   106   107   108   109   110   111   112   113   114