28 lines
913 B
XML
28 lines
913 B
XML
<?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:background="@drawable/grid_item_bind"
|
|
android:padding="12dp"
|
|
android:id="@+id/ll_root"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="马*飞(8000)"
|
|
android:textColor="#fff0c8b4"
|
|
android:textSize="26sp"
|
|
android:textStyle="bold" />
|
|
|
|
|
|
<TextView
|
|
android:id="@+id/tv_phone"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="138****8000"
|
|
android:textColor="#ff7c6d6a"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
</LinearLayout> |