<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
<LinearLayout
android:paddingBottom="8dp"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Property파일 읽기/쓰기" />
</LinearLayout>
<LinearLayout
android:paddingBottom="8dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<Button
android:id="@+id/btnPropWrite"
android:text="Property 쓰기"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="mOnPropertyClick" />
<Button
android:id="@+id/btnPropRead"
android:text="Property 읽기"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="mOnPropertyClick" />
</LinearLayout>
<LinearLayout
android:paddingBottom="8dp"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="결과 : " />
<TextView
android:id="@+id/txtProperty"
android:layout_weight="1"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</LinearLayout>