Page 1030 - 3-2
P. 1030

<LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:layout_weight="1"
                    android:orientation="horizontal">
                    <Button
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:onClick="onClick_blu"
                        android:layout_weight="1"
                        android:background="#00FF0000"/>
                    <Button
                        android:layout_width="0dp"
                        android:layout_height="match_parent"
                        android:onClick="onClick_ok"
                        android:layout_weight="1"
                        android:background="#00FF0000"/>
                </LinearLayout>
            </LinearLayout>


            < activity_password.xml >
            <?xml version="1.0" encoding="utf-8"?>
            <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
                xmlns:app="http://schemas.android.com/apk/res-auto"
                xmlns:tools="http://schemas.android.com/tools"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical"
                android:background="@drawable/manager_bg"
                tools:context="kr.icehs.intec.automaticvaluablesbox_0515.PasswordActivity">
                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="0dp"
                    android:gravity="center"
                    android:layout_weight="9"
                    android:orientation="vertical"
                    android:weightSum="1">


                    <EditText
                        android:id="@+id/managerPw"
                        android:layout_width="120dp"
                        android:layout_height="wrap_content"
                        android:hint=" 관리자 암호"
                        android:maxLength="8"
                        android:inputType="textPassword" />


                                                        - 1030 -
   1025   1026   1027   1028   1029   1030   1031   1032   1033   1034   1035