2025-11-21 03:41:27 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2025-12-04 07:42:14 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2025-11-21 03:41:27 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
android:layout_width="match_parent"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_height="wrap_content" >
|
2025-11-21 03:41:27 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
2025-11-21 03:41:27 +00:00
|
|
|
android:layout_width="match_parent"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@mipmap/zero_bg_root"
|
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<com.ama.core.architecture.widget.CustomTitleBar
|
|
|
|
|
android:id="@+id/titlebar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
/>
|
2025-11-24 03:29:04 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<androidx.core.widget.NestedScrollView
|
|
|
|
|
android:id="@+id/content_root"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
<FrameLayout
|
2025-11-24 03:29:04 +00:00
|
|
|
android:layout_width="match_parent"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_height="match_parent">
|
2025-11-24 03:29:04 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
2025-11-21 03:41:27 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:orientation="vertical">
|
2025-11-24 03:29:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-11-24 06:07:25 +00:00
|
|
|
android:orientation="vertical"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_marginHorizontal="22dp">
|
2025-11-24 03:29:04 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<RelativeLayout
|
2025-11-24 06:07:25 +00:00
|
|
|
android:layout_width="match_parent"
|
2025-11-24 03:29:04 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_marginTop="200dp">
|
2025-11-24 06:07:25 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/tv_zero_gold_num"
|
|
|
|
|
android:layout_width="wrap_content"
|
2025-11-24 06:07:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:textSize="14sp"
|
|
|
|
|
android:textColor="@color/red_00_dark"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:text="0"
|
|
|
|
|
android:paddingVertical="4dp"
|
|
|
|
|
android:paddingHorizontal="15dp"
|
|
|
|
|
android:layout_marginBottom="5dp"
|
|
|
|
|
android:minWidth="100dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:drawableLeft="@mipmap/task_gold"
|
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
|
android:background="@drawable/bg_zero_gold_num"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:id="@+id/tv_zero_lottery_list"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
|
android:textSize="10sp"
|
|
|
|
|
android:textColor="@color/red_10_dark"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:text="@string/zero_menu_records"
|
|
|
|
|
android:paddingVertical="9dp"
|
|
|
|
|
android:paddingHorizontal="15dp"
|
|
|
|
|
android:minWidth="100dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:background="@mipmap/zero_bg_menu"
|
|
|
|
|
/>
|
|
|
|
|
</RelativeLayout>
|
2025-12-04 07:22:58 +00:00
|
|
|
|
|
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:padding="15dp"
|
|
|
|
|
android:background="@drawable/zero_bg_4_items">
|
2025-12-04 07:22:58 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<!--第一行两个-->
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="horizontal">
|
2025-12-04 07:22:58 +00:00
|
|
|
|
|
|
|
|
<LinearLayout
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_width="0dp"
|
2025-12-04 07:22:58 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:background="@mipmap/zero_bg_item">
|
2025-12-04 07:22:58 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4.5dp"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:textColor="@color/red_1b"
|
|
|
|
|
android:textSize="15sp"
|
|
|
|
|
android:text="@string/zero_buy_title"
|
2025-12-04 07:22:58 +00:00
|
|
|
/>
|
|
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<FrameLayout
|
2025-12-04 07:22:58 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_marginTop="7.5dp">
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@mipmap/zero_bg_item_sub1"
|
|
|
|
|
/>
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
|
2025-12-04 07:22:58 +00:00
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4.5dp"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:textColor="@color/gray9"
|
|
|
|
|
android:textSize="10sp"
|
|
|
|
|
android:text="@string/sorte"
|
2025-12-04 07:22:58 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_marginTop="0.5dp"
|
|
|
|
|
android:orientation="horizontal">
|
2025-12-04 07:22:58 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_marginTop="4.5dp"
|
|
|
|
|
android:textColor="@color/red_28"
|
|
|
|
|
android:textSize="13sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:text="0"
|
2025-12-04 07:22:58 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_marginTop="4.5dp"
|
|
|
|
|
android:textColor="@color/gray3"
|
|
|
|
|
android:textSize="13sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:text="/10"
|
2025-12-04 07:22:58 +00:00
|
|
|
/>
|
|
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4.5dp"
|
|
|
|
|
android:textColor="@color/gray3"
|
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
|
android:textSize="13sp"
|
|
|
|
|
android:text="@string/pessoas"
|
|
|
|
|
/>
|
2025-12-04 07:22:58 +00:00
|
|
|
</LinearLayout>
|
2025-11-24 06:07:25 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<FrameLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="5dp">
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:src="@mipmap/zero_bg_but"
|
|
|
|
|
/>
|
2025-11-24 03:29:04 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:layout_gravity="center_horizontal">
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
|
android:textSize="14sp"
|
|
|
|
|
android:text="@string/participar"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:textSize="10sp"
|
|
|
|
|
android:text="0"
|
|
|
|
|
android:drawableStart="@mipmap/icon_gold_ss"
|
|
|
|
|
android:drawablePadding="3dp"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</FrameLayout>
|
|
|
|
|
</LinearLayout>
|
2025-11-24 03:29:04 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
|
android:background="@mipmap/zero_bg_item">
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
2025-11-24 06:07:25 +00:00
|
|
|
|
|
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<!--第一行两个-->
|
2025-11-24 06:07:25 +00:00
|
|
|
<LinearLayout
|
2025-12-04 07:42:14 +00:00
|
|
|
android:layout_width="match_parent"
|
2025-11-24 06:07:25 +00:00
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:layout_marginTop="15dp">
|
2025-11-24 06:07:25 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:background="@mipmap/zero_bg_item">
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
|
android:background="@mipmap/zero_bg_item">
|
|
|
|
|
</LinearLayout>
|
2025-11-24 06:07:25 +00:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
2025-11-24 03:29:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
2025-11-24 03:29:04 +00:00
|
|
|
|
2025-11-24 06:07:25 +00:00
|
|
|
</LinearLayout>
|
2025-11-24 03:29:04 +00:00
|
|
|
|
|
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<!--参加者-->
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:padding="15dp"
|
|
|
|
|
android:layout_marginHorizontal="16dp"
|
|
|
|
|
android:background="@drawable/bg_zero_buy_bottom">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4.5dp"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:text="@string/participar_member"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="4.5dp"
|
|
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="12sp"
|
|
|
|
|
android:text="@string/participar_member_2"
|
|
|
|
|
/>
|
|
|
|
|
</LinearLayout>
|
2025-11-21 03:41:27 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
</RelativeLayout>
|
2025-11-21 03:41:27 +00:00
|
|
|
|
2025-12-04 07:36:24 +00:00
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
<!--提示信息-->
|
2025-12-04 07:36:24 +00:00
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:padding="15dp"
|
|
|
|
|
android:background="@drawable/bg_zero_buy_bottom_hint">
|
|
|
|
|
|
2025-12-04 07:36:24 +00:00
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:textColor="@color/red_9c"
|
2025-12-04 07:36:24 +00:00
|
|
|
android:textSize="12sp"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:text="@string/zero_buy_hint_title"
|
2025-12-04 07:36:24 +00:00
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-04 07:42:14 +00:00
|
|
|
android:textColor="@color/red_9c"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:textSize="10sp"
|
|
|
|
|
android:text="@string/zero_buy_hint_content"
|
2025-12-04 07:36:24 +00:00
|
|
|
/>
|
|
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
</LinearLayout>
|
2025-11-24 03:29:04 +00:00
|
|
|
|
|
|
|
|
|
2025-12-04 07:36:24 +00:00
|
|
|
</LinearLayout>
|
2025-11-24 03:29:04 +00:00
|
|
|
|
2025-12-04 07:36:24 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2025-12-04 07:42:14 +00:00
|
|
|
</FrameLayout>
|
|
|
|
|
</androidx.core.widget.NestedScrollView>
|
|
|
|
|
</FrameLayout>
|
2025-11-21 03:41:27 +00:00
|
|
|
|
|
|
|
|
|