39 lines
1.2 KiB
XML
39 lines
1.2 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<LinearLayout
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:layout_marginRight="15dp"
|
||
|
android:gravity="center">
|
||
|
|
||
|
<LinearLayout android:id="@+id/bg"
|
||
|
android:layout_width="69dp"
|
||
|
android:layout_height="96dp"
|
||
|
android:gravity="center"
|
||
|
android:orientation="vertical"
|
||
|
android:background="@mipmap/box">
|
||
|
|
||
|
<ImageView android:id="@+id/ico"
|
||
|
android:layout_width="33dp"
|
||
|
android:layout_height="33dp"
|
||
|
android:src="@mipmap/momo_dy"/>
|
||
|
|
||
|
<TextView android:id="@+id/name"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:text="紅潤"
|
||
|
android:textColor="#F6F7FB"
|
||
|
android:textSize="16sp"/>
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/value"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="@color/color_white"
|
||
|
android:text="111"
|
||
|
android:layout_marginTop="2dp"
|
||
|
android:textSize="14sp"/>
|
||
|
|
||
|
</LinearLayout>
|