Page 106 - 3-3
P. 106

스트
                    <ImageView
                            android:id="@+id/imageView2"
                            android:layout_width="60dp"
                            android:layout_height="60dp"
                            android:layout_alignLeft="@id/imageView1"
                            android:src="@drawable/pwicon"
                            android:layout_below="@id/imageView1"
                                                            />
                                                                                    // 패스워드 이미지 뷰
                    <EditText
                            android:id="@+id/etpw"
                            android:layout_width="250dp"
                            android:layout_height="wrap_content"
                            android:inputType="textPassword"
                            android:ems="20"
                            android:layout_toRightOf="@id/imageView2"
                            android:layout_alignBottom="@id/imageView2"
                            android:layout_marginLeft="10dp"/>


                    // 패스워드를 입력할 에디트 텍스트


                    <Button
                            android:id="@+id/btnlogin"
                            android:text=" 로그인"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_below="@id/etpw"
                            android:layout_alignRight="@id/etpw"
                                                            />
                                                                    // 아이디와 패스워드를 입력하고 누르는
            로그인 버튼
            </RelativeLayout>
            network.xml
            <RelativeLayoutxmlns: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">


                    <DigitalClock
                            android:id="@+id/clock"
                            android:layout_width="wrap_content"
                            android:layout_height="wrap_content"
                            android:layout_centerHorizontal="true"


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