<?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="match_parent"
|
android:orientation="vertical"
|
android:background="#F0F0F0">
|
|
<!-- 标题栏 -->
|
<TextView
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="邀请有礼"
|
android:textSize="20sp"
|
android:gravity="center"
|
android:padding="16dp"
|
android:textColor="#333333"/>
|
|
<!-- 横幅广告区域 -->
|
<ImageView
|
android:layout_width="match_parent"
|
android:layout_height="200dp"
|
android:src="@drawable/gift_one"
|
android:scaleType="fitXY"
|
android:layout_marginBottom="16dp"
|
android:background="@drawable/rounded_corner_image"
|
android:padding="1dp" />
|
|
<!-- 邀请成功提示区域 -->
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:background="#FFFFFF"
|
android:layout_marginBottom="16dp">
|
<androidx.recyclerview.widget.RecyclerView
|
android:id="@+id/invitationsuccessRecyclerView"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:maxHeight="100dp"
|
android:paddingStart="16dp"
|
android:paddingEnd="16dp"
|
android:paddingBottom="16dp"
|
android:clipToPadding="false"
|
android:overScrollMode="never"/>
|
</LinearLayout>
|
|
<!-- 邀请按钮区域 -->
|
<Button
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="立即邀请好友"
|
android:backgroundTint="#FF0000"
|
android:textColor="#FFFFFF"
|
android:padding="16dp"
|
android:textSize="16sp"
|
android:layout_marginBottom="16dp"/>
|
|
<!-- 邀请任务表格区域 -->
|
<TableLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:padding="16dp"
|
android:background="#FFFFFF"
|
android:layout_marginBottom="16dp">
|
|
<TableRow>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="邀请人数"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="邀请奖励"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="被邀请人奖励"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
</TableRow>
|
|
<TableRow>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="1人"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="3天会员"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="1天会员"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
</TableRow>
|
|
<TableRow>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="3人"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="免广告特权 (7天)"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="1天会员"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
</TableRow>
|
|
<TableRow>
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="5人"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="7天会员"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="1天会员"
|
android:textSize="16sp"
|
android:padding="8dp"
|
android:textColor="#333333"/>
|
</TableRow>
|
</TableLayout>
|
|
<!-- 邀请记录区域 -->
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="vertical"
|
android:padding="16dp"
|
android:background="#FFFFFF">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="我的邀请记录"
|
android:textSize="16sp"
|
android:paddingBottom="8dp"
|
android:textColor="#333333"/>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal"
|
android:paddingBottom="8dp">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="Hnnnnne"
|
android:textSize="16sp"
|
android:paddingEnd="8dp"
|
android:textColor="#333333"/>
|
|
<Button
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="待注册"
|
android:background="#CCCCCC"
|
android:textColor="#000000"
|
android:padding="8dp"
|
android:textSize="14sp"/>
|
</LinearLayout>
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:orientation="horizontal">
|
|
<TextView
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="Hnnnnne"
|
android:textSize="16sp"
|
android:paddingEnd="8dp"
|
android:textColor="#333333"/>
|
|
<Button
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:text="已注册"
|
android:background="#008800"
|
android:textColor="#FFFFFF"
|
android:padding="8dp"
|
android:textSize="14sp"/>
|
</LinearLayout>
|
</LinearLayout>
|
|
</LinearLayout>
|