2019-11-12 10:14:29 +08:00
|
|
|
<?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/sel_layout_water"
|
|
|
|
android:clickable="true"
|
|
|
|
android:focusable="true"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="15dp"
|
2020-03-27 16:48:14 +08:00
|
|
|
android:paddingTop="25dp"
|
2019-11-12 10:14:29 +08:00
|
|
|
android:paddingRight="15dp"
|
2020-03-27 16:48:14 +08:00
|
|
|
android:paddingBottom="25dp">
|
2019-11-12 10:14:29 +08:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/iv_icon"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
tools:background="@drawable/ic_address_list" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/tv_title"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="11dp"
|
|
|
|
android:textColor="#ff353535"
|
|
|
|
android:textSize="14sp"
|
|
|
|
tools:text="案件上报" />
|
|
|
|
</LinearLayout>
|