2020-05-27 13:32:22 +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="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2020-07-14 17:22:58 +08:00
|
|
|
android:layout_marginLeft="20dp"
|
|
|
|
android:layout_marginTop="10dp"
|
2020-05-27 13:32:22 +08:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="5dp">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/iv_icon"
|
2020-06-08 10:09:08 +08:00
|
|
|
android:layout_width="40dp"
|
|
|
|
android:layout_height="40dp"
|
2020-05-27 13:32:22 +08:00
|
|
|
android:scaleType="fitXY"
|
|
|
|
tools:src="@drawable/ic_add_photo" />
|
|
|
|
|
2020-07-14 17:22:58 +08:00
|
|
|
<com.sucstepsoft.cm_utils.core.widget.views.TypeFaceTextView
|
2020-06-08 10:09:08 +08:00
|
|
|
android:id="@+id/tv_name"
|
2020-05-27 13:32:22 +08:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
android:ellipsize="end"
|
|
|
|
android:maxEms="5"
|
|
|
|
android:singleLine="true"
|
2020-07-14 17:22:58 +08:00
|
|
|
android:textColor="#242424"
|
2020-05-27 13:32:22 +08:00
|
|
|
android:textSize="10sp"
|
|
|
|
tools:text="基层文化中心" />
|
|
|
|
</LinearLayout>
|