38 lines
1.4 KiB
XML
38 lines
1.4 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="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="5dp"
|
|
android:orientation="horizontal">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:background="@drawable/shp_status_blue"
|
|
android:paddingLeft="5dp"
|
|
android:paddingRight="5dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:gravity="center"
|
|
android:paddingTop="5dp"
|
|
android:paddingBottom="5dp"
|
|
android:textColor="@color/text_blue"
|
|
android:textSize="14sp"
|
|
tools:text="组织部门名称" />
|
|
|
|
<ImageView
|
|
android:id="@+id/iv_del"
|
|
android:layout_width="15dp"
|
|
android:layout_height="15dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="5dp"
|
|
android:layout_toRightOf="@id/tv_name"
|
|
android:scaleType="fitXY"
|
|
android:src="@drawable/ic_del_32" />
|
|
</RelativeLayout>
|
|
</LinearLayout> |