2023-08-02 16:55:36 +08:00
|
|
|
<?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:layout_marginStart="8dp"
|
|
|
|
android:layout_marginEnd="8dp"
|
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/gift_img"
|
|
|
|
android:layout_width="43dp"
|
|
|
|
android:layout_height="43dp"
|
|
|
|
android:layout_marginTop="12dp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/gift_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:text="@string/regular_bubble"
|
|
|
|
android:textSize="11sp" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/gift_wall"
|
|
|
|
android:layout_width="50dp"
|
|
|
|
android:layout_height="20dp"
|
|
|
|
android:layout_marginTop="6dp"
|
2023-08-03 14:29:04 +08:00
|
|
|
android:textSize="11sp"
|
2023-08-02 16:55:36 +08:00
|
|
|
android:background="@drawable/background_codex_item_btn"
|
|
|
|
android:gravity="center" />
|
|
|
|
</LinearLayout>
|