Page 105 - 3-3
P. 105

<ImageView
                                                              android:id="@+id/flow"
                                                              android:layout_width="300dp"
                                                              android:layout_height="300dp"
                                                              android:layout_toLeftOf="@id/menus"
                                                              android:layout_centerVertical="true"
                                                              android:src="@drawable/puppy"/>
                                                                                              // 배경을 강아지
              로 설정


              </RelativeLayout>


              login.xml
              <RelativeLayoutxmlns:android="http://schemas.android.com/apk/res/android"
                      android:layout_width="match_parent"
                      android:layout_height="match_parent"
                      android:background="ffeeee" >
                      // 로그인 창을 만들 레이아웃
                      <ImageView
                      android:id="@+id/logo'
                      android:layout_width="180dp"
                      android:layout_height="180dp"
                      android:src="@drawable/puppy"
                      android:layout_centerHorizontal="true"/>
                      // 중앙의 스마트 개밥 하우스 로고


                      <ImageView
                              android:id="@+id/imageView1"
                              android:layout_width="60dp"
                              android:layout_height="60dp"
                              android:layout_centerVertical="true"
                              android:layout_toLeftOf="@id/logo"
                              android:src="@drawable/idicon"
                                                              />
                                                                                      // 아이디 이미지 뷰
                      <EditText
                              android:id="@+id/etid"
                              android:layout_width="250dp"
                              android:layout_height=""wrap_content"
                              android:ems="20"
                              android:layout_alignBottom="@id/imageView1"
                              android:layout_toRightOf="@id/imageView1"
                              android:layout_marginLeft="10dp"
                                                              />
                                                                                      //id 를 입력할 에디트 텍


                                                          - 105 -
   100   101   102   103   104   105   106   107   108   109   110