53 lines
1.7 KiB
XML
53 lines
1.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="36dp"
|
|
android:layout_marginLeft="10dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginRight="10dp"
|
|
android:orientation="horizontal">
|
|
|
|
|
|
<LinearLayout
|
|
android:id="@+id/ll_item_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="36dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="-30dp"
|
|
android:layout_toRightOf="@id/tv_number"
|
|
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginLeft="45dp"
|
|
android:layout_weight="1"
|
|
android:gravity="center_vertical"
|
|
android:textSize="@dimen/text_14"
|
|
tools:text="网格员姓名" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_ranking"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:textSize="@dimen/text_14"
|
|
tools:text="上报事件" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:id="@+id/tv_number"
|
|
android:layout_width="51dp"
|
|
android:layout_height="32dp"
|
|
android:layout_centerVertical="true"
|
|
android:gravity="center"
|
|
android:textSize="@dimen/text_14"
|
|
tools:background="@drawable/ic_statistics_one"
|
|
tools:text="1" />
|
|
|
|
</RelativeLayout> |