27 lines
909 B
XML
27 lines
909 B
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:gravity="center"
|
||
|
android:orientation="vertical"
|
||
|
android:padding="5dp">
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/iv_icon"
|
||
|
android:layout_width="30dp"
|
||
|
android:layout_height="30dp"
|
||
|
android:scaleType="fitXY"
|
||
|
tools:src="@drawable/ic_add_photo" />
|
||
|
|
||
|
<TextView
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="5dp"
|
||
|
android:ellipsize="end"
|
||
|
android:maxEms="5"
|
||
|
android:singleLine="true"
|
||
|
android:textColor="@color/gray_text"
|
||
|
android:textSize="10sp"
|
||
|
tools:text="基层文化中心" />
|
||
|
</LinearLayout>
|