44 lines
1.3 KiB
XML
44 lines
1.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/bg"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="50dp"
|
|
android:background="@drawable/bg_coin_item_0"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/wrap"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:scaleType="fitXY"
|
|
android:src="@mipmap/icon_coin_wrap"
|
|
android:visibility="invisible"
|
|
/>
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center"
|
|
android:gravity="center_vertical"
|
|
android:orientation="horizontal"
|
|
>
|
|
|
|
<ImageView
|
|
android:id="@+id/thumb"
|
|
android:layout_width="18dp"
|
|
android:layout_height="18dp"
|
|
android:scaleType="centerCrop"
|
|
/>
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="3dp"
|
|
android:textColor="@color/textColor"
|
|
android:textSize="14sp"
|
|
/>
|
|
|
|
</LinearLayout>
|
|
</FrameLayout> |