pdlivexp/common/src/main/res/layout/item_medal_achievement.xml

32 lines
1.1 KiB
XML
Raw Normal View History

2023-08-03 14:29:04 +08:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="100dp">
<ImageView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scaleType="fitXY"
android:src="@mipmap/background_medal_achievement" />
<ImageView
android:id="@+id/achievement_img"
android:layout_width="58dp"
android:layout_height="53dp"
android:layout_gravity="center" />
</FrameLayout>
<TextView
android:id="@+id/gift_wall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:layout_marginTop="8dp"
android:text="@string/gift_wall"
android:textSize="14sp" />
</LinearLayout>