XiMengJianYu/.svn/pristine/97/9765e3ae079769c654df90d5c8c59cde019dc9fa.svn-base
2023-04-17 17:58:44 +08:00

64 lines
1.9 KiB
XML
Executable File

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal">
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:orientation="horizontal">
<TextView
android:id="@+id/dialog_name"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="姓名:"
android:textSize="23sp"
android:typeface="sans"/>
</LinearLayout>
<TextView
android:id="@+id/dialog_phone"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="电话:"
android:textSize="23sp"
android:typeface="serif"/>
<TextView
android:id="@+id/dialog_guanxi"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:text="关系:"
android:textSize="23sp"
android:typeface="monospace"/>
</LinearLayout>
<View
android:layout_width="match_parent"
android:layout_height="8dp"
android:background="#00000000"
/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#0a0a0a"
/>
<View
android:layout_width="match_parent"
android:layout_height="15dp"
android:background="#00000000"
/>
</LinearLayout>