Page 202 - 3-2
P. 202

마 안드로이드 앱 관련 소스.
                1) App 화면 소스
                  가) activity_main.xml


            <?xml version="1.0" encoding="utf-8"?>
            <RelativeLayout xmlns: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="@drawable/background"
                tools:context="kr.icehs.intec.smart_elevator.MainActivity">


                <LinearLayout
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:orientation="vertical"
                    android:layout_alignParentTop="true"
                    android:layout_centerHorizontal="true"
                    android:layout_marginTop="120dp">


                    <Button
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:onClick="onClick_check_call"
                        android:background="@drawable/menu_1"
                        android:textSize="30dp"
                        />


                    <Button
                        android:id="@+id/button2"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:background="@drawable/menu_2"
                        android:onClick="onClick_cctv"
                        android:textSize="30dp" />
                </LinearLayout>
            </RelativeLayout>


              - activity_check__call.xml
            <?xml version="1.0" encoding="utf-8"?>
            <RelativeLayout xmlns: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:paddingBottom="15dp"


                                                         - 202 -
   197   198   199   200   201   202   203   204   205   206   207