Page 518 - 3-3
P. 518
엘리베이터 로그를 표시하는 부분이다.
하. elevator_setting
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
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">
<TextView <!-- “ 서버 주소 설정 문구를 표시하는” TextView -->
android:id="@+id/textSetting"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:padding="10dp"
android:text=" 서버 주소 설정"
android:textStyle="bold"
android:textSize="25dp"
android:textColor="@color/white"
android:background="@color/elevatorMain"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent"/>
<TextView <!-- “Application 서버 주소 문구를 표시할” TextView -->
android:id="@+id/textApplicationServer"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginBottom="10dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:paddingRight="10dp"
android:text="Application 서버 주소"
android:textSize="20sp"
android:textStyle="bold"
app:layout_constraintTop_toBottomOf="@id/textSetting"
app:layout_constraintLeft_toLeftOf="parent"/>
<EditText <!-- Application 서버 주소를 입력받을 EditText -->
android:id="@+id/editApplicationServer"
android:layout_width="0dp"
- 518 -