28 lines
911 B
XML
28 lines
911 B
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<com.yunbao.common.custom.MyLinearLayout4
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="80dp"
|
||
|
android:orientation="vertical"
|
||
|
app:mll4_count="4"
|
||
|
>
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/icon"
|
||
|
android:layout_width="40dp"
|
||
|
android:layout_height="40dp"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="10dp"
|
||
|
/>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_gravity="center_horizontal"
|
||
|
android:layout_marginTop="4dp"
|
||
|
android:textColor="@color/gray3"
|
||
|
android:textSize="13sp"
|
||
|
/>
|
||
|
</com.yunbao.common.custom.MyLinearLayout4>
|