44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="132dp"
|
|
android:layout_margin="5dp"
|
|
android:background="@mipmap/background_gift_without_wall"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical">
|
|
|
|
<ImageView
|
|
android:id="@+id/gift_img"
|
|
android:layout_width="65dp"
|
|
android:layout_height="65dp"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="20dp" />
|
|
|
|
<TextView
|
|
android:id="@+id/gift_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="9dp"
|
|
android:text="@string/instant_light"
|
|
android:gravity="center"
|
|
android:textColor="#54618F"
|
|
android:textSize="14sp" />
|
|
</LinearLayout>
|
|
|
|
<FrameLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@mipmap/background_gift_wall_masking">
|
|
|
|
<ImageView
|
|
android:layout_width="22dp"
|
|
android:layout_height="30dp"
|
|
android:layout_gravity="center"
|
|
android:src="@mipmap/background_gift_wall_lock" />
|
|
</FrameLayout>
|
|
</FrameLayout> |