136 lines
5.0 KiB
XML
136 lines
5.0 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:background="@drawable/shape_rectangle_white"
|
|
android:orientation="vertical"
|
|
android:padding="10dp">
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_ename"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#ff353535"
|
|
android:textSize="18sp"
|
|
tools:text="名" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="·"
|
|
android:textColor="@color/black"
|
|
android:textSize="20sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_surname"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#ff353535"
|
|
android:textSize="18sp"
|
|
tools:text="姓" />
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_cname"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#ff353535"
|
|
android:textSize="18sp"
|
|
tools:text="中文名" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_native"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textColor="@color/black"
|
|
android:textSize="12sp"
|
|
tools:text="国籍" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_phone"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textColor="@color/black"
|
|
android:textSize="12sp"
|
|
tools:text="联系电话" />
|
|
</LinearLayout>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical">
|
|
|
|
<Button
|
|
android:id="@+id/btn_del"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/sel_btn_submit"
|
|
android:minWidth="0dp"
|
|
android:minHeight="0dp"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:text="删除"
|
|
android:textColor="@color/white" />
|
|
|
|
<Button
|
|
android:id="@+id/btn_edit"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:background="@drawable/sel_btn_submit"
|
|
android:minWidth="0dp"
|
|
android:minHeight="0dp"
|
|
android:paddingLeft="8dp"
|
|
android:paddingRight="8dp"
|
|
android:text="编辑"
|
|
android:textColor="@color/white" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2dp"
|
|
android:layout_marginTop="5dp"
|
|
android:background="@drawable/shp_line_dotted"
|
|
android:layerType="software" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_location"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="5dp"
|
|
android:drawableLeft="@drawable/ic_location_blue"
|
|
android:drawablePadding="5dp"
|
|
android:ellipsize="end"
|
|
android:maxLines="2"
|
|
android:textColor="#ff1189ff"
|
|
android:textSize="12sp"
|
|
tools:text="中国内蒙古自治区包头市九原区X067中国内蒙古自治区包头市九原区X067中国内蒙古自治区包头市九原区X067中国内蒙古自治区包头市九原区X067中国内蒙古自治区包头市九原区X067中国内蒙古自治区包头市九原区X067(包哈公里)" />
|
|
|
|
|
|
</LinearLayout> |