49 lines
1.6 KiB
XML
Executable File
49 lines
1.6 KiB
XML
Executable File
<?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:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
android:padding="2dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_photo"
|
|
android:layout_width="70dp"
|
|
android:layout_height="70dp"
|
|
tools:background="@drawable/ic_empty_data" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:padding="3dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/text_18"
|
|
tools:text="姓名" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_number"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="@color/black"
|
|
android:textSize="@dimen/text_18"
|
|
tools:text="姓名" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_type"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginRight="10dp"
|
|
android:gravity="right"
|
|
android:textSize="@dimen/text_14"
|
|
tools:text="司机" />
|
|
</LinearLayout>
|
|
</LinearLayout> |