Page 113 - 3-3
P. 113

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">
                                                      // 사료 공급을 설정할 레이아웃
                              <RadioGroup
                                      android:id="@+id/types"
                                      android:layout_width="match_parent"
                                      android:layout_height="wrap_content"
                                      android:orientation="horizontal"
                                      android:gravity="center">
                                                      // 사료의 종류를 선택할 라디오 그룹
                                      <RadioButton
                                              android:id="@+id/a"
                                              android:layout_width="75dp"
                                              android:layout_height="50dp"
                                              android:text="A"
                                              android:textColor="#00AAFF"
                                              android:textSize="30dp"/>
                                                              //A 를 선택하는 라디오 버튼
                                      <RadioButton


                                                          - 113 -
   108   109   110   111   112   113   114   115   116   117   118