2025-11-20 07:30:17 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<LinearLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-11-20 07:30:17 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2025-11-21 09:52:58 +00:00
|
|
|
android:id="@+id/iv_bg"
|
2025-11-20 07:30:17 +00:00
|
|
|
android:layout_width="wrap_content"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:layout_height="80dp"
|
2025-11-20 07:30:17 +00:00
|
|
|
android:layout_centerInParent="true"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:src="@mipmap/bg_biginner_daily"/>
|
2025-11-20 07:30:17 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:gravity="center_horizontal"
|
2025-11-20 07:30:17 +00:00
|
|
|
android:layout_centerInParent="true"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:layout_marginTop="10dp"
|
2025-11-20 07:30:17 +00:00
|
|
|
>
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2025-11-20 08:00:23 +00:00
|
|
|
android:id="@+id/iv_gold"
|
2025-11-20 07:30:17 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:src="@mipmap/icon_glod_small"/>
|
2025-11-20 07:30:17 +00:00
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/tv_gold_num"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:layout_width="wrap_content"
|
2025-11-20 07:30:17 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:gravity="center"
|
2025-11-20 07:30:17 +00:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
android:textColor="@color/red_0b"
|
|
|
|
|
android:text="100"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/tv_day_num"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-11-21 09:52:58 +00:00
|
|
|
android:layout_marginTop="1dp"
|
2025-11-20 07:30:17 +00:00
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:textColor="@color/gray3"
|
|
|
|
|
android:text="Dia"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|