2025-08-26 19:34:44 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<layout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
|
|
|
|
<data>
|
|
|
|
|
|
|
|
|
|
</data>
|
|
|
|
|
|
|
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:id="@+id/cl_root"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:background="@mipmap/log_bj">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_80"
|
|
|
|
|
android:background="@color/transparent"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="20dip"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_96"
|
|
|
|
|
android:drawablePadding="5dp"
|
|
|
|
|
android:text="完善资料"
|
|
|
|
|
android:textColor="@color/color_black"
|
|
|
|
|
android:textSize="23sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:visibility="gone" />
|
|
|
|
|
|
2025-09-19 02:28:02 +08:00
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
>
|
|
|
|
|
|
|
|
|
|
<com.xscm.moduleutil.widget.GifAvatarOvalView
|
|
|
|
|
android:id="@+id/rv_user_head"
|
|
|
|
|
android:layout_width="@dimen/dp_74"
|
|
|
|
|
android:layout_height="@dimen/dp_74"
|
|
|
|
|
android:layout_gravity="center_horizontal"
|
2025-09-19 17:40:02 +08:00
|
|
|
android:src="@mipmap/user_wait_header"
|
2025-09-19 02:28:02 +08:00
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
app:riv_oval="true" />
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="@dimen/dp_24"
|
|
|
|
|
android:layout_height="@dimen/dp_24"
|
|
|
|
|
android:src="@mipmap/zhaop"
|
|
|
|
|
android:scaleType="fitCenter"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="@+id/rv_user_head"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="@+id/rv_user_head"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/dp_80"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_marginTop="@dimen/dp_34"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_40">
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_ts"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:letterSpacing="0.1"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:text="起个好听的名字"
|
|
|
|
|
android:textColor="#73000000"
|
|
|
|
|
android:textSize="16sp"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:textStyle="bold" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/ll"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dp_40"
|
|
|
|
|
android:layout_below="@+id/tv_ts"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<com.xscm.moduleutil.widget.ClearEditText
|
|
|
|
|
android:id="@+id/ed_nick_name"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_weight="1"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:background="@drawable/bg_r100_hui"
|
|
|
|
|
android:gravity="center|left"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:hint="请输入昵称"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:maxLength="10"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:paddingStart="10dp"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:paddingEnd="@dimen/dp_10"
|
|
|
|
|
android:singleLine="true"
|
|
|
|
|
android:text=""
|
|
|
|
|
android:textColor="#333333"
|
|
|
|
|
android:textSize="14sp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_user_name"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_weight="0.2"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:gravity="center"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:text="随机"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:textColor="@color/color_FF6C49E4"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:textSize="14sp" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:orientation="horizontal">
|
2025-09-19 02:28:02 +08:00
|
|
|
|
2025-08-26 19:34:44 +08:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="选择您的性别"
|
|
|
|
|
android:textColor="#73000000"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:textStyle="bold" />
|
2025-09-19 02:28:02 +08:00
|
|
|
|
2025-08-26 19:34:44 +08:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text=" (注册成功,不可更改)"
|
|
|
|
|
android:textColor="#33000000"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:textSize="12sp" />
|
2025-08-26 19:34:44 +08:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/rg_sex"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dp_72"
|
|
|
|
|
android:layout_marginStart="@dimen/dp_40"
|
|
|
|
|
android:layout_marginTop="12dp"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_marginEnd="@dimen/dp_40"
|
|
|
|
|
android:background="@drawable/selector_sex_mm"
|
|
|
|
|
android:orientation="horizontal">
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/rl_nv"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:gravity="center">
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_boy"
|
|
|
|
|
android:layout_width="@dimen/dp_137"
|
|
|
|
|
android:layout_height="@dimen/dp_72"
|
|
|
|
|
android:scaleType="fitCenter"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:src="@mipmap/check_boy" />
|
2025-08-26 19:34:44 +08:00
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/rl_nan"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="1"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:gravity="center">
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_girl"
|
|
|
|
|
android:layout_width="@dimen/dp_137"
|
|
|
|
|
android:layout_height="@dimen/dp_72"
|
|
|
|
|
android:scaleType="fitCenter"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:src="@mipmap/check_girl" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="@dimen/dp_40"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_24"
|
|
|
|
|
android:orientation="horizontal">
|
2025-09-19 02:28:02 +08:00
|
|
|
|
2025-08-26 19:34:44 +08:00
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="您的生日"
|
|
|
|
|
android:textColor="#73000000"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dp_50"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:layout_marginTop="12dp"
|
|
|
|
|
android:layout_marginRight="16dp"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_year"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="@dimen/dp_44"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_weight="1"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:background="@drawable/bg_r100_hui"
|
|
|
|
|
android:gravity="center"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:singleLine="true"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:text="2001"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="16sp"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:textStyle="bold" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="@dimen/dp_0"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_marginStart="@dimen/dp_7"
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_7"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:layout_weight="0.2"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text="年"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_month"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="@dimen/dp_44"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_weight="1"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:background="@drawable/bg_r100_hui"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:gravity="center"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:singleLine="true"
|
|
|
|
|
android:text="12"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="16sp"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:textStyle="bold" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="@dimen/dp_0"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginStart="@dimen/dp_7"
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_7"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_weight="0.2"
|
|
|
|
|
android:gravity="center"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:text="月"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="16sp"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:textStyle="bold" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/tv_day"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="@dimen/dp_44"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_weight="1"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:background="@drawable/bg_r100_hui"
|
|
|
|
|
android:gravity="center"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:singleLine="true"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:text="1"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="16sp"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:textStyle="bold" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="@dimen/dp_0"
|
|
|
|
|
android:layout_height="match_parent"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_marginStart="@dimen/dp_7"
|
|
|
|
|
android:layout_marginEnd="@dimen/dp_7"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:layout_weight="0.2"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text="日"
|
|
|
|
|
android:textColor="@color/black"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:layout_marginTop="@dimen/dp_12"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_40"
|
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/et_invite_code"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dp_44"
|
|
|
|
|
android:background="@drawable/bg_r100_hui"
|
|
|
|
|
android:hint="请填写您的邀请码"
|
|
|
|
|
android:paddingLeft="@dimen/dp_24"
|
|
|
|
|
android:paddingRight="@dimen/dp_24"
|
|
|
|
|
android:singleLine="true"
|
|
|
|
|
android:textColor="#33000000"
|
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/fl_commit"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="@dimen/dp_42"
|
|
|
|
|
android:layout_alignParentBottom="true"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:layout_centerInParent="true"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:layout_centerHorizontal="true"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_marginLeft="@dimen/dp_40"
|
|
|
|
|
android:layout_marginRight="@dimen/dp_40"
|
|
|
|
|
android:layout_marginBottom="@dimen/dp_20"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:background="@drawable/theme_bg"
|
|
|
|
|
android:gravity="center">
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/iv_commit_bg"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="@dimen/dp_75"
|
|
|
|
|
android:layout_marginLeft="10dp"
|
|
|
|
|
android:layout_marginRight="10dp"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:src="@drawable/theme_bg"
|
|
|
|
|
android:visibility="gone" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_gravity="center"
|
|
|
|
|
android:enabled="false"
|
|
|
|
|
android:gravity="center"
|
2025-09-04 01:10:07 +08:00
|
|
|
android:text="开启秘地之旅"
|
2025-08-26 19:34:44 +08:00
|
|
|
android:textColor="@color/white"
|
|
|
|
|
android:textSize="16sp"
|
|
|
|
|
android:textStyle="bold"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:visibility="gone" />
|
2025-08-26 19:34:44 +08:00
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="21dp"
|
|
|
|
|
android:text="进入秘地"
|
|
|
|
|
android:textColor="@color/color_white"
|
2025-09-19 02:28:02 +08:00
|
|
|
android:textSize="16sp" />
|
2025-08-26 19:34:44 +08:00
|
|
|
</RelativeLayout>
|
|
|
|
|
</RelativeLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
</layout>
|