23 lines
740 B
XML
23 lines
740 B
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="match_parent"
|
|
android:gravity="center_vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/gift_icon"
|
|
android:layout_marginStart="14dp"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:src="@mipmap/hide" />
|
|
|
|
<TextView
|
|
android:id="@+id/gift_name"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="3dp"
|
|
android:text="dadsad"
|
|
android:textColor="@color/white"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout> |