修改我的页面的bug

This commit is contained in:
md
2021-08-17 18:11:29 +08:00
parent e69d8c3cec
commit a525ed7c99
26 changed files with 907 additions and 201 deletions

View File

@@ -0,0 +1,39 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context=".activity.LinkActivity">
<RelativeLayout
android:id="@+id/rl_web"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#1BA5F1"
android:paddingTop="@dimen/top_pind_sp">
<ImageView
android:id="@+id/iv_icon"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:padding="5dp"
android:src="@drawable/ic_baseline_arrow"
android:layout_alignParentLeft="true"
android:layout_marginLeft="15dp" />
<!-- <TextView-->
<!-- android:id="@+id/tv_title"-->
<!-- style="@style/text_style_toolbar_title"-->
<!-- android:layout_width="wrap_content"-->
<!-- -->
<!-- android:layout_toRightOf="@id/iv_icon"-->
<!-- android:textColor="#fff" />-->
</RelativeLayout>
<WebView
android:id="@+id/link_web"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>

View File

@@ -48,6 +48,7 @@
android:layout_marginTop="8dp"
android:hint=" ID/手机号"
android:maxLines="1"
android:singleLine="true"
android:textColor="@color/white"
android:paddingBottom="20dp"
android:layout_marginRight="35dp"

View File

@@ -0,0 +1,94 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".activity.RegardMapActivity">
<LinearLayout
android:id="@+id/rl_filter"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#1BA5F1"
android:orientation="horizontal"
android:paddingTop="@dimen/top_pind_sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/iv_filter_final"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:layout_alignParentLeft="true"
android:layout_marginLeft="15dp"
android:src="@drawable/icon_arrow" />
<TextView
android:id="@+id/tv_filter"
style="@style/text_style_toolbar_title"
android:layout_width="wrap_content"
android:layout_toRightOf="@id/iv_find_task"
android:text="地图寻宝简介" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_margin="20dp"
android:layout_marginBottom="245dp"
android:orientation="vertical"
app:layout_constraintTop_toBottomOf="@+id/rl_filter"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
>
<TextView
android:id="@+id/tv_phone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/map_regard"
android:textSize="16sp"
app:layout_constraintTop_toBottomOf="@+id/rl_filter"
/>
<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:layout_marginTop="15dp"
android:text="公司官网请见"
android:textSize="16sp"
app:layout_constraintLeft_toLeftOf="@+id/tv_phone"
app:layout_constraintTop_toBottomOf="@+id/tv_phone" />
<TextView
android:id="@+id/tv_map_link"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="15dp"
android:textColor="#0000FF"
android:textSize="16sp"
android:layout_marginLeft="5dp"
android:text="http://www.navinfo.com"
/>
</LinearLayout>
<TextView
android:id="@+id/tv_official_link"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="15sp"
android:textSize="16sp"
android:text="更多详情请见官网https://dtxbmaps.navinfo.com/user"
app:layout_constraintLeft_toLeftOf="@+id/tv_phone"
app:layout_constraintTop_toBottomOf="@+id/tv_phone" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -1,15 +1,16 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/rl_contact"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#1BA5F1"
android:paddingTop="@dimen/top_pind_sp"
android:orientation="horizontal"
android:paddingTop="@dimen/top_pind_sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
@@ -20,23 +21,341 @@
android:layout_height="45dp"
android:layout_alignParentLeft="true"
android:layout_marginLeft="15dp"
android:src="@drawable/icon_arrow"
/>
android:src="@drawable/icon_arrow" />
<TextView
android:id="@+id/tv_contact"
android:layout_width="wrap_content"
style="@style/text_style_toolbar_title"
android:layout_width="wrap_content"
android:layout_toRightOf="@id/iv_find_task"
android:text="联系我们" />
</LinearLayout>
<WebView
android:id="@+id/news_webView"
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/rl_contact" />
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:orientation="vertical"
app:layout_constraintTop_toBottomOf="@+id/rl_contact">
<TextView
android:id="@+id/tv_mapPhone"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="地图寻宝各区域联系方式:"
android:textSize="16sp"
app:layout_constraintTop_toBottomOf="@+id/rl_contact" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center_horizontal"
android:layout_gravity="center_vertical"
android:background="@color/colorBlue"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_qqName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_qqPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_jingName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称"
android:textSize="16sp" />
<TextView
android:id="@+id/tv_jingPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="100dp"
android:text="QQ群号"
android:textSize="16sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:background="#AEAAAA"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_heiName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称"
android:textSize="16sp" />
<TextView
android:id="@+id/tv_heiPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号"
android:textSize="16sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_shanName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称"
android:textSize="16sp" />
<TextView
android:id="@+id/tv_shanPhone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号"
android:textSize="16sp" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:background="#AEAAAA"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_yuName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_yuPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_chuanName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_chuanPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:background="#AEAAAA"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_ganName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_ganPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_suName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_suPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:background="#AEAAAA"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_luName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_luPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_fuName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_fuPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:background="#AEAAAA"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_guangName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_guangPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_ganzName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_ganzPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:background="#AEAAAA"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_yueName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_yuePhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="25dp"
android:gravity="center"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_yunName"
android:textSize="16sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="QQ群名称" />
<TextView
android:id="@+id/tv_yunPhone"
android:layout_width="wrap_content"
android:textSize="16sp"
android:layout_height="wrap_content"
android:layout_marginLeft="120dp"
android:text="QQ群号" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
android:text="地图寻宝微信公众号:微信搜索地图寻宝或者扫码关注"/>
<!-- <ImageView-->
<!-- android:layout_width=""-->
<!-- android:layout_height=""-->
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -8,7 +8,7 @@
<TextView
android:id="@+id/tv_title"
android:layout_width="280dp"
android:layout_width="270dp"
android:layout_height="wrap_content"
android:text="众包录像 测试3"
android:textColor="#333"

View File

@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:background="@drawable/bg"
tools:context=".fragment.RegisterFragment">
@@ -12,8 +12,8 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/colorPrimaryBlue"
android:paddingTop="@dimen/top_pind_sp"
android:orientation="horizontal"
android:paddingTop="@dimen/top_pind_sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
@@ -24,20 +24,19 @@
android:layout_height="45dp"
android:layout_alignParentLeft="true"
android:layout_marginLeft="15dp"
android:src="@drawable/ic_baseline_arrow"
/>
android:src="@drawable/ic_baseline_arrow" />
<TextView
android:id="@+id/tv_register_title"
style="@style/toolbar_style"
android:layout_width="wrap_content"
android:layout_height="45dp"
android:layout_marginLeft="15dp"
android:layout_toRightOf="@id/iv_find_task"
android:gravity="center"
android:text="注册"
style="@style/toolbar_style"
/>
android:text="注册" />
</LinearLayout>
<TextView
android:id="@+id/register_title"
android:layout_width="match_parent"
@@ -63,57 +62,57 @@
<TextView
android:id="@+id/register_phone"
style="@style/text_styles"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="25dp"
android:text="手机号"
style="@style/text_styles"
app:layout_constraintTop_toBottomOf="@id/register_desc"
app:layout_constraintLeft_toLeftOf="@id/register_desc"
/>
app:layout_constraintTop_toBottomOf="@id/register_desc" />
<EditText
android:id="@+id/et_register_phone"
style="@style/register_hint_style"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="35dp"
android:hint="11位手机号码"
android:inputType="number"
android:textColor="@color/white"
android:layout_marginLeft="35dp"
style="@style/register_hint_style"
android:maxLength="11"
android:textColor="@color/white"
android:textColorHint="@color/colorTransparent"
android:textCursorDrawable="@drawable/text_color"
android:theme="@style/MyEditText"
app:layout_constraintLeft_toLeftOf="@id/register_phone"
app:layout_constraintTop_toBottomOf="@id/register_phone" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="35dp"
android:layout_marginRight="50dp"
android:background="@color/colorHui"
app:layout_constraintTop_toBottomOf="@id/et_register_phone"
app:layout_constraintLeft_toLeftOf="@id/et_register_phone"/>
app:layout_constraintLeft_toLeftOf="@id/et_register_phone"
app:layout_constraintTop_toBottomOf="@id/et_register_phone" />
<TextView
android:id="@+id/register_note"
style="@style/text_styles"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="短信验证码"
style="@style/text_styles"
app:layout_constraintTop_toBottomOf="@id/et_register_phone"
app:layout_constraintLeft_toLeftOf="@id/et_register_phone"
/>
app:layout_constraintTop_toBottomOf="@id/et_register_phone" />
<EditText
android:id="@+id/et_register_note"
style="@style/register_hint_style"
android:layout_width="250dp"
android:layout_height="wrap_content"
android:hint="6位短信验证"
android:textColor="@color/white"
android:inputType="number"
style="@style/register_hint_style"
android:textColor="@color/white"
android:textColorHint="@color/colorTransparent"
android:textCursorDrawable="@drawable/text_color"
android:theme="@style/MyEditText"
@@ -127,117 +126,121 @@
android:layout_marginLeft="35dp"
android:layout_marginRight="50dp"
android:background="@color/colorHui"
app:layout_constraintTop_toBottomOf="@id/et_register_note"
app:layout_constraintLeft_toLeftOf="@id/et_register_note"/>
app:layout_constraintLeft_toLeftOf="@id/et_register_note"
app:layout_constraintTop_toBottomOf="@id/et_register_note" />
<TextView
android:id="@+id/register_get_note"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="获取短信验证码"
android:textSize="14sp"
android:textColor="@color/colorWhite"
app:layout_constraintTop_toTopOf="@id/et_register_note"
android:textSize="14sp"
app:layout_constraintBottom_toBottomOf="@id/et_register_note"
app:layout_constraintRight_toRightOf="@id/view3"
/>
app:layout_constraintTop_toTopOf="@id/et_register_note" />
<TextView
android:id="@+id/register_referrer"
style="@style/text_styles"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="推荐人"
style="@style/text_styles"
app:layout_constraintTop_toBottomOf="@id/et_register_note"
app:layout_constraintLeft_toLeftOf="@id/et_register_note"
/>
app:layout_constraintTop_toBottomOf="@id/et_register_note" />
<EditText
android:id="@+id/et_register_referrer"
style="@style/register_hint_style"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:hint="推荐人(编码/邮箱/手机号)"
android:maxLines="1"
android:textColor="@color/white"
style="@style/register_hint_style"
android:textColorHint="@color/colorTransparent"
android:textCursorDrawable="@drawable/text_color"
android:theme="@style/MyEditText"
app:layout_constraintLeft_toLeftOf="@id/register_referrer"
app:layout_constraintTop_toBottomOf="@id/register_referrer"/>
app:layout_constraintTop_toBottomOf="@id/register_referrer" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorHui"
android:layout_marginLeft="35dp"
android:layout_marginRight="50dp"
app:layout_constraintTop_toBottomOf="@id/et_register_referrer"
app:layout_constraintLeft_toLeftOf="@id/et_register_referrer"/>
android:background="@color/colorHui"
app:layout_constraintLeft_toLeftOf="@id/et_register_referrer"
app:layout_constraintTop_toBottomOf="@id/et_register_referrer" />
<TextView
android:id="@+id/register_paw"
style="@style/text_styles"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="密码"
style="@style/text_styles"
app:layout_constraintTop_toBottomOf="@id/et_register_referrer"
app:layout_constraintLeft_toLeftOf="@id/et_register_referrer"
/>
app:layout_constraintTop_toBottomOf="@id/et_register_referrer" />
<EditText
android:id="@+id/et_register_paw"
style="@style/register_hint_style"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:hint="6-20位密码"
android:textColor="@color/white"
android:inputType="textPassword"
style="@style/register_hint_style"
android:maxLength="20"
android:textColor="@color/white"
android:textColorHint="@color/colorTransparent"
android:textCursorDrawable="@drawable/text_color"
android:theme="@style/MyEditText"
app:layout_constraintLeft_toLeftOf="@id/register_paw"
app:layout_constraintTop_toBottomOf="@id/register_paw"/>
app:layout_constraintTop_toBottomOf="@id/register_paw" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorHui"
android:layout_marginLeft="35dp"
android:layout_marginRight="50dp"
app:layout_constraintTop_toBottomOf="@id/et_register_paw"
app:layout_constraintLeft_toLeftOf="@id/et_register_paw"/>
android:background="@color/colorHui"
app:layout_constraintLeft_toLeftOf="@id/et_register_paw"
app:layout_constraintTop_toBottomOf="@id/et_register_paw" />
<TextView
android:id="@+id/register_confirm_paw"
style="@style/text_styles"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:text="确认密码"
style="@style/text_styles"
app:layout_constraintTop_toBottomOf="@id/et_register_paw"
app:layout_constraintLeft_toLeftOf="@id/et_register_paw"
/>
app:layout_constraintTop_toBottomOf="@id/et_register_paw" />
<EditText
android:id="@+id/et_register_confirm_paw"
style="@style/register_hint_style"
android:layout_width="300dp"
android:layout_height="wrap_content"
android:hint="请再次输入一遍密码"
android:inputType="textPassword"
android:maxLength="20"
android:textColor="@color/white"
android:inputType="textPassword"
style="@style/register_hint_style"
android:textColorHint="@color/colorTransparent"
android:textCursorDrawable="@drawable/text_color"
android:theme="@style/MyEditText"
app:layout_constraintLeft_toLeftOf="@id/register_confirm_paw"
app:layout_constraintTop_toBottomOf="@id/register_confirm_paw"/>
app:layout_constraintTop_toBottomOf="@id/register_confirm_paw" />
<View
android:id="@+id/view_paw"
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colorHui"
android:layout_marginLeft="35dp"
android:layout_marginRight="50dp"
app:layout_constraintTop_toBottomOf="@id/et_register_confirm_paw"
app:layout_constraintLeft_toLeftOf="@id/et_register_confirm_paw"/>
android:background="@color/colorHui"
app:layout_constraintLeft_toLeftOf="@id/et_register_confirm_paw"
app:layout_constraintTop_toBottomOf="@id/et_register_confirm_paw" />
<CheckBox
android:id="@+id/iv_register_check"
@@ -245,37 +248,40 @@
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:buttonTint="@color/white"
app:layout_constraintTop_toBottomOf="@id/et_register_confirm_paw"
app:layout_constraintLeft_toLeftOf="@id/et_register_confirm_paw" />
app:layout_constraintLeft_toLeftOf="@id/et_register_confirm_paw"
app:layout_constraintTop_toBottomOf="@id/et_register_confirm_paw" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="2dp"
android:text="免责声明"
android:textColor="@color/colorWhite"
app:layout_constraintTop_toTopOf="@id/iv_register_check"
app:layout_constraintLeft_toRightOf="@id/iv_register_check"
app:layout_constraintBottom_toBottomOf="@id/iv_register_check"
android:layout_marginLeft="2dp"/>
app:layout_constraintLeft_toRightOf="@id/iv_register_check"
app:layout_constraintTop_toTopOf="@id/iv_register_check" />
<TextView
android:id="@+id/have_go_login"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="已有账号,去登录"
android:textColor="@color/colorWhite"
app:layout_constraintTop_toTopOf="@id/iv_register_check"
app:layout_constraintBottom_toBottomOf="@id/iv_register_check"
app:layout_constraintRight_toRightOf="@id/view_paw"
app:layout_constraintBottom_toBottomOf="@id/iv_register_check"/>
app:layout_constraintTop_toTopOf="@id/iv_register_check" />
<Button
android:id="@+id/btn_register"
style="@style/login_style"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_marginTop="20dp"
android:gravity="center"
style="@style/login_style"
android:text="注册"
android:layout_marginLeft="35dp"
android:layout_marginTop="20dp"
android:layout_marginRight="35dp"
android:gravity="center"
android:text="注册"
app:layout_constraintLeft_toLeftOf="@id/iv_register_check"
app:layout_constraintTop_toBottomOf="@id/iv_register_check"/>
app:layout_constraintTop_toBottomOf="@id/iv_register_check" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -5,82 +5,77 @@
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".fragment.StaySubmitFragment">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
android:layout_height="match_parent">
<androidx.constraintlayout.widget.ConstraintLayout
android:id="@+id/cl_stay_type"
android:layout_width="match_parent"
android:layout_height="70dp"
android:layout_height="80dp"
android:background="@drawable/road_shape"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<TextView
style="@style/text_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="18dp"
android:layout_marginBottom="5dp"
android:text="类型"
app:layout_constraintBottom_toTopOf="@+id/tv_stay_type"
app:layout_constraintStart_toStartOf="@+id/tv_stay_type" />
app:layout_constraintStart_toStartOf="@+id/tv_stay_type"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_stay_type"
style="@style/main_about_text_style"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:layout_marginLeft="10dp"
android:layout_marginBottom="20dp"
android:text="全部"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="0.65" />
app:layout_constraintStart_toStartOf="parent" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="20dp"
android:background="@drawable/ic_baseline_arrow_forward"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="@color/colormap"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
<LinearLayout
<RelativeLayout
android:id="@+id/ll_results"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_height="80dp"
android:background="@drawable/road_shape"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/cl_stay_type">
<TextView
android:id="@+id/tv_stay_result"
android:id="@+id/tv_result"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="10dp"
android:layout_centerVertical="true"
android:layout_margin="20dp"
android:text="筛选结果"
android:textSize="25sp"
android:textStyle="bold" />
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/stay_xrv"
android:nestedScrollingEnabled="false"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</LinearLayout>
android:textSize="20sp" />
</RelativeLayout>
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/stay_xrv"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_constraintTop_toBottomOf="@+id/ll_results"
/>
<LinearLayout
android:id="@+id/ll_del"
android:layout_width="match_parent"
@@ -88,7 +83,7 @@
android:orientation="horizontal"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/ll_results">
app:layout_constraintTop_toBottomOf="@+id/stay_xrv">
<CheckBox
android:id="@+id/cb_select"
@@ -116,10 +111,10 @@
android:layout_height="wrap_content"
android:layout_margin="20dp"
android:text="提交"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/ll_del"
app:layout_constraintBottom_toBottomOf="parent"/>
app:layout_constraintTop_toBottomOf="@+id/ll_del" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.core.widget.NestedScrollView>

View File

@@ -47,5 +47,10 @@
android:layout_marginRight="10dp"
app:layout_constraintRight_toLeftOf="@+id/tv_auditStatus"
app:layout_constraintTop_toTopOf="@+id/tv_createTime" />
<View
android:layout_width="match_parent"
android:layout_height="1dp"
app:layout_constraintBottom_toBottomOf="parent"
android:background="#C0BFBF"/>
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -14,4 +14,9 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
android:layout_marginLeft="10dp"/>
<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:background="#C0BFBF"
app:layout_constraintBottom_toBottomOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>

View File

@@ -13,8 +13,6 @@
<string name="hello_blank_fragment">Hello blank fragment</string>
<string name="statement">一、地图寻宝活动说明\n\n
1.1.关于活动:地图寻宝活动(以下简称“活动”)是图新、其子公司和关联公司等(以下统称为“图新”)举办的一个以“实景互动,
@@ -150,4 +148,11 @@
11.4如果出现您对本条款的违反行为,图新保留针对该违反行为采取法律所能提供的所有补救手段的权利。如果您在使用本软件或参与本活动期间发现有任何在您看来属于
不正当或在其它方面违反本条款的内容,您应及时向图新举报。\n\n
</string>
<string name="map_regard">北京四维图新科技股份有限公司简称四维图新深交所股票代码002405是中国领先的数字地图内容、车联网及动态交通信息服务、地理位置相关的商业智能解决方案提供商。\n\n
地图寻宝是由北京四维图团队打造的兼职赚钱类应用。只要您有碎片时间,完成小任务即可有现金收入。\n\n
地图寻宝App作为专业众包作业工具可作业道路、POI、充电站、公交站、门牌号等多类型任务。\n\n
地图寻宝小程序简版众包作业工具无需安装可采集POI、充电站点类型任务\n\n
地图寻宝小程序:微信小程序搜索-地图寻宝</string>
</resources>