完成'我的'页面部细节问题和常见问题 页面
This commit is contained in:
6
app/src/main/res/drawable/gethering_shape.xml
Normal file
6
app/src/main/res/drawable/gethering_shape.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<corners android:radius="2dp"/>
|
||||
<size android:width="200dp" android:height="100dp"/>
|
||||
<stroke android:color="#FF9800" android:width="1dp"/>
|
||||
</shape>
|
||||
5
app/src/main/res/drawable/image_shape.xml
Normal file
5
app/src/main/res/drawable/image_shape.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:shape="rectangle">
|
||||
<corners android:radius="10dp"/>
|
||||
</shape>
|
||||
6
app/src/main/res/drawable/login_ripple.xml
Normal file
6
app/src/main/res/drawable/login_ripple.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="#7fffffff">
|
||||
<item
|
||||
android:drawable="@drawable/shape_login" />
|
||||
</ripple>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/colorRed" />
|
||||
<corners android:radius="40dp" />
|
||||
<corners android:radius="50dp" />
|
||||
</shape>
|
||||
7
app/src/main/res/drawable/mine_outlogin_ripple.xml
Normal file
7
app/src/main/res/drawable/mine_outlogin_ripple.xml
Normal file
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="#7fffffff"
|
||||
>
|
||||
<item android:drawable="@drawable/main_shape_outlogin"/>
|
||||
|
||||
</ripple>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/colorWhite"/>
|
||||
<corners android:radius="50dp"/>
|
||||
<solid android:color="@color/colorTransparent" />
|
||||
<corners android:radius="50dp" />
|
||||
</shape>
|
||||
@@ -1,5 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/colorPrimaryBlue" />
|
||||
<corners android:radius="40dp" />
|
||||
<corners android:radius="50dp" />
|
||||
</shape>
|
||||
6
app/src/main/res/drawable/user_data_shape.xml
Normal file
6
app/src/main/res/drawable/user_data_shape.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<shape xmlns:android="http://schemas.android.com/apk/res/android">
|
||||
<solid android:color="@color/colorPrimaryBlue"/>
|
||||
<corners android:radius="50dp"/>
|
||||
|
||||
</shape>
|
||||
6
app/src/main/res/drawable/user_rz.xml
Normal file
6
app/src/main/res/drawable/user_rz.xml
Normal file
@@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="#7fffffff"
|
||||
>
|
||||
<item android:drawable="@drawable/user_shape"/>
|
||||
</ripple>
|
||||
5
app/src/main/res/drawable/user_style.xml
Normal file
5
app/src/main/res/drawable/user_style.xml
Normal file
@@ -0,0 +1,5 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<ripple xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:color="#7fffffff">
|
||||
<item android:drawable="@drawable/user_data_shape"/>
|
||||
</ripple>
|
||||
@@ -1,8 +1,8 @@
|
||||
<?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/ll_about"
|
||||
@@ -53,8 +53,8 @@
|
||||
android:layout_height="100dp"
|
||||
android:layout_gravity="center"
|
||||
android:layout_marginTop="15dp"
|
||||
android:src="@mipmap/ic_launcher"
|
||||
/>
|
||||
android:background="@drawable/image_shape"
|
||||
android:src="@mipmap/ic_launcher" />
|
||||
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
@@ -95,8 +95,8 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="60dp"
|
||||
android:layout_marginLeft="15dp"
|
||||
android:gravity="center"
|
||||
android:background="?android:attr/selectableItemBackground">
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:gravity="center">
|
||||
|
||||
<TextView
|
||||
style="@style/main_about_text_style"
|
||||
|
||||
@@ -45,7 +45,7 @@
|
||||
android:layout_width="300dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginTop="8dp"
|
||||
android:hint="编码/手机号/邮箱"
|
||||
android:hint="ID/手机号"
|
||||
android:paddingBottom="20dp"
|
||||
android:textColorHint="@color/colorTransparent"
|
||||
android:textCursorDrawable="@drawable/text_color"
|
||||
@@ -117,14 +117,14 @@
|
||||
app:layout_constraintRight_toRightOf="@id/et_login_paw"
|
||||
app:layout_constraintTop_toBottomOf="@id/et_login_paw" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_login"
|
||||
style="@style/login_style"
|
||||
<Button
|
||||
android:id="@+id/btn_login"
|
||||
android:layout_width="300dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:gravity="center"
|
||||
android:text="登录"
|
||||
style="@style/login_style"
|
||||
app:layout_constraintLeft_toLeftOf="@id/iv_login_check"
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_forget_paw" />
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
45
app/src/main/res/layout/fragment_issue_web.xml
Normal file
45
app/src/main/res/layout/fragment_issue_web.xml
Normal file
@@ -0,0 +1,45 @@
|
||||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
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"
|
||||
tools:context="com.navinfo.outdoor.fragment.IssueWebFragment">
|
||||
<LinearLayout
|
||||
android:id="@+id/rl_issueWeb"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:background="#1BA5F1"
|
||||
android:paddingTop="@dimen/top_pind_sp"
|
||||
android:orientation="horizontal"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toTopOf="parent">
|
||||
|
||||
<ImageView
|
||||
android:id="@+id/iv_issueWeb_finish"
|
||||
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_issueWeb"
|
||||
android:layout_width="wrap_content"
|
||||
style="@style/text_style_toolbar_title"
|
||||
android:layout_toRightOf="@id/iv_issueWeb_finish"
|
||||
android:text="常见问题" />
|
||||
</LinearLayout>
|
||||
|
||||
<WebView
|
||||
android:id="@+id/issue_webView"
|
||||
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_issueWeb" />
|
||||
|
||||
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -112,6 +112,7 @@
|
||||
app:layout_constraintLeft_toLeftOf="@id/register_note"
|
||||
app:layout_constraintTop_toBottomOf="@id/register_note" />
|
||||
<View
|
||||
android:id="@+id/view3"
|
||||
android:layout_width="300dp"
|
||||
android:layout_height="1dp"
|
||||
android:background="@color/colorHui"
|
||||
@@ -126,8 +127,7 @@
|
||||
android:textColor="@color/colorWhite"
|
||||
app:layout_constraintTop_toTopOf="@id/et_register_note"
|
||||
app:layout_constraintBottom_toBottomOf="@id/et_register_note"
|
||||
app:layout_constraintRight_toRightOf="parent"
|
||||
android:layout_marginRight="30dp"
|
||||
app:layout_constraintRight_toRightOf="@id/et_register_phone"
|
||||
/>
|
||||
<TextView
|
||||
android:id="@+id/register_referrer"
|
||||
|
||||
@@ -44,6 +44,7 @@
|
||||
android:orientation="vertical"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
android:background="@drawable/gethering_shape"
|
||||
app:layout_constraintTop_toBottomOf="@+id/rl_gathering">
|
||||
|
||||
<TextView
|
||||
@@ -92,7 +93,7 @@
|
||||
android:textSize="18sp"
|
||||
android:gravity="center"
|
||||
android:textColor="#333"
|
||||
android:text="持卡人" />
|
||||
android:text="持 卡 人:" />
|
||||
|
||||
<EditText
|
||||
android:layout_width="wrap_content"
|
||||
@@ -118,7 +119,7 @@
|
||||
android:textSize="18sp"
|
||||
android:gravity="center"
|
||||
android:textColor="#333"
|
||||
android:text="银行卡号" />
|
||||
android:text="银行卡号:" />
|
||||
|
||||
<EditText
|
||||
android:layout_width="wrap_content"
|
||||
@@ -146,7 +147,7 @@
|
||||
android:textColor="#333"
|
||||
android:layout_alignParentLeft="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:text="所属银行" />
|
||||
android:text="所属银行:" />
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_bank"
|
||||
@@ -174,6 +175,7 @@
|
||||
/>
|
||||
<Button
|
||||
android:id="@+id/btn_bank"
|
||||
style="@style/user_data_style"
|
||||
android:layout_marginTop="40dp"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
|
||||
@@ -1,14 +1,16 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<LinearLayout
|
||||
xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical"
|
||||
>
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/tv_issue_title"
|
||||
android:layout_marginLeft="15dp"
|
||||
android:textSize="15sp"/>
|
||||
android:layout_marginTop="15dp"
|
||||
android:orientation="vertical">
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_issue_title"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="50dp"
|
||||
android:layout_marginLeft="15dp"
|
||||
android:background="?android:attr/selectableItemBackground"
|
||||
android:textSize="16sp" />
|
||||
|
||||
</LinearLayout>
|
||||
@@ -22,153 +22,4 @@
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_measure_text1">
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_choose2"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="vertical"-->
|
||||
<!-- android:visibility="gone"-->
|
||||
<!-- app:layout_constraintTop_toBottomOf="@id/tv_measure_text1">-->
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_measureA"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="vertical">-->
|
||||
|
||||
<!-- <CheckBox-->
|
||||
<!-- android:id="@+id/cb_measureA"-->
|
||||
<!-- style="@style/Widget.AppCompat.CompoundButton.RadioButton"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="选项A:" />-->
|
||||
|
||||
<!-- <ImageView-->
|
||||
<!-- android:id="@+id/iv_measureA"-->
|
||||
<!-- android:layout_width="100dp"-->
|
||||
<!-- android:layout_height="100dp"-->
|
||||
<!-- android:src="@drawable/select_check" />-->
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_measureB"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="vertical">-->
|
||||
|
||||
<!-- <CheckBox-->
|
||||
<!-- android:id="@+id/cb_measureB"-->
|
||||
<!-- style="@style/Widget.AppCompat.CompoundButton.RadioButton"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="选项A:" />-->
|
||||
|
||||
<!-- <ImageView-->
|
||||
<!-- android:id="@+id/iv_measureB"-->
|
||||
<!-- android:layout_width="100dp"-->
|
||||
<!-- android:layout_height="100dp"-->
|
||||
<!-- android:src="@drawable/select_check" />-->
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_measureC"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="vertical">-->
|
||||
|
||||
<!-- <CheckBox-->
|
||||
<!-- android:id="@+id/cb_measureC"-->
|
||||
<!-- style="@style/Widget.AppCompat.CompoundButton.RadioButton"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="选项A:" />-->
|
||||
|
||||
<!-- <ImageView-->
|
||||
<!-- android:id="@+id/iv_measureC"-->
|
||||
<!-- android:layout_width="100dp"-->
|
||||
<!-- android:layout_height="100dp"-->
|
||||
<!-- android:src="@drawable/select_check" />-->
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_measureD"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="vertical">-->
|
||||
|
||||
<!-- <CheckBox-->
|
||||
<!-- android:id="@+id/cb_measureD"-->
|
||||
<!-- style="@style/Widget.AppCompat.CompoundButton.RadioButton"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="选项A:" />-->
|
||||
|
||||
<!-- <ImageView-->
|
||||
<!-- android:id="@+id/iv_measureD"-->
|
||||
<!-- android:layout_width="100dp"-->
|
||||
<!-- android:layout_height="100dp"-->
|
||||
<!-- android:src="@drawable/select_check" />-->
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_measureE"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="vertical"-->
|
||||
<!-- android:visibility="gone">-->
|
||||
|
||||
<!-- <CheckBox-->
|
||||
<!-- style="@style/Widget.AppCompat.CompoundButton.RadioButton"-->
|
||||
<!-- android:id="@+id/cb_measureE"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="选项A:" />-->
|
||||
|
||||
<!-- <ImageView-->
|
||||
<!-- android:id="@+id/iv_measureE"-->
|
||||
<!-- android:layout_width="100dp"-->
|
||||
<!-- android:layout_height="100dp"-->
|
||||
<!-- android:src="@drawable/select_check" />-->
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_measureF"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="vertical"-->
|
||||
<!-- android:visibility="gone">-->
|
||||
|
||||
<!-- <RadioButton-->
|
||||
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="选项A:" />-->
|
||||
|
||||
<!-- <ImageView-->
|
||||
<!-- android:id="@+id/iv_measureF"-->
|
||||
<!-- android:layout_width="100dp"-->
|
||||
<!-- android:layout_height="100dp"-->
|
||||
<!-- android:src="@drawable/select_check" />-->
|
||||
<!-- </LinearLayout>-->
|
||||
|
||||
<!-- <LinearLayout-->
|
||||
<!-- android:id="@+id/ll_measureG"-->
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:orientation="vertical"-->
|
||||
<!-- android:visibility="gone">-->
|
||||
|
||||
<!-- <RadioButton-->
|
||||
|
||||
<!-- android:layout_width="match_parent"-->
|
||||
<!-- android:layout_height="wrap_content"-->
|
||||
<!-- android:text="选项A:" />-->
|
||||
|
||||
<!-- <ImageView-->
|
||||
<!-- android:id="@+id/iv_measureG"-->
|
||||
<!-- android:layout_width="100dp"-->
|
||||
<!-- android:layout_height="100dp"-->
|
||||
<!-- android:src="@drawable/select_check" />-->
|
||||
<!-- </LinearLayout>-->
|
||||
<!-- </LinearLayout>-->
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -207,6 +207,7 @@
|
||||
android:layout_marginTop="40dp"
|
||||
android:layout_marginRight="20dp"
|
||||
android:text="退出登录"
|
||||
style="@style/user_data_style"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/relativeLayout" />
|
||||
|
||||
@@ -31,6 +31,7 @@
|
||||
android:layout_toRightOf="@id/iv_find_task"
|
||||
android:gravity="center"
|
||||
android:text="实名认证"
|
||||
|
||||
android:textColor="#fff"
|
||||
android:textSize="17sp"
|
||||
android:textStyle="bold" />
|
||||
@@ -55,7 +56,7 @@
|
||||
android:layout_width="100dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:gravity="center"
|
||||
android:text="姓名:"
|
||||
android:text="姓 名:"
|
||||
android:textColor="#333"
|
||||
android:textSize="18sp" />
|
||||
|
||||
@@ -133,6 +134,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_marginTop="40dp"
|
||||
style="@style/user_data_style"
|
||||
android:text="认证" />
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
@@ -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_user"
|
||||
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,13 +21,12 @@
|
||||
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_user"
|
||||
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>
|
||||
@@ -36,10 +36,10 @@
|
||||
style="@style/text_style"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="账号信息"
|
||||
android:layout_margin="20dp"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
android:text="账号信息"
|
||||
app:layout_constraintBottom_toTopOf="@id/linearLayout"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/rl_user" />
|
||||
|
||||
<LinearLayout
|
||||
@@ -47,10 +47,10 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="480dp"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_marginTop="20dp"
|
||||
android:layout_marginRight="20dp"
|
||||
android:background="#fff"
|
||||
android:orientation="vertical"
|
||||
android:layout_marginTop="20dp"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@id/tv_title">
|
||||
@@ -62,23 +62,22 @@
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
style="@style/user_text_style"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="实名认证"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
style="@style/user_text_style" />
|
||||
android:layout_marginLeft="20dp"
|
||||
android:text="实名认证" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/btn_attestation"
|
||||
style="@style/user_style"
|
||||
android:layout_width="70dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_marginRight="10dp"
|
||||
android:text="去认证"
|
||||
android:textColor="#fff"
|
||||
style="@style/user_style"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
android:textColor="#fff" />
|
||||
|
||||
</RelativeLayout>
|
||||
|
||||
@@ -94,24 +93,23 @@
|
||||
android:gravity="center_vertical">
|
||||
|
||||
<TextView
|
||||
style="@style/user_text_style"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="收款信息"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
style="@style/user_text_style"
|
||||
/>
|
||||
android:layout_marginLeft="20dp"
|
||||
android:text="收款信息" />
|
||||
|
||||
<Button
|
||||
android:id="@+id/btn_gathering"
|
||||
style="@style/user_style"
|
||||
android:layout_width="70dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="10dp"
|
||||
android:text="去绑定"
|
||||
android:textColor="#fff"
|
||||
style="@style/user_style"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
android:textColor="#fff" />
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
@@ -127,21 +125,21 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_region"
|
||||
style="@style/user_text_style"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="所在地区*"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="20dp"
|
||||
style="@style/user_text_style"
|
||||
/>
|
||||
android:text="所在地区*" />
|
||||
|
||||
<EditText
|
||||
android:layout_toRightOf="@id/tv_region"
|
||||
android:layout_width="wrap_content"
|
||||
android:id="@+id/et_region"
|
||||
style="@style/user_hint_style"
|
||||
android:layout_centerVertical="true"
|
||||
android:hint="请选择所在区域"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/tv_region"
|
||||
android:hint="请选择所在区域" />
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
@@ -157,21 +155,21 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_number"
|
||||
style="@style/user_text_style"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="手机号码*"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="20dp"
|
||||
style="@style/user_text_style"
|
||||
/>
|
||||
android:text="手机号码*" />
|
||||
|
||||
<EditText
|
||||
android:layout_toRightOf="@id/tv_number"
|
||||
android:layout_width="wrap_content"
|
||||
android:id="@+id/et_phone"
|
||||
style="@style/user_hint_style"
|
||||
android:layout_centerVertical="true"
|
||||
android:hint="请输入手机号码"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/tv_number"
|
||||
android:hint="请输入手机号码" />
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
@@ -187,21 +185,21 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_qq"
|
||||
style="@style/user_text_style"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="QQ号码*"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="20dp"
|
||||
style="@style/user_text_style"
|
||||
/>
|
||||
android:text="QQ号码*" />
|
||||
|
||||
<EditText
|
||||
android:layout_toRightOf="@id/tv_qq"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:hint="请输入QQ号码"
|
||||
android:id="@+id/et_qq"
|
||||
style="@style/user_hint_style"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/tv_qq"
|
||||
android:hint="请输入QQ号码" />
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
@@ -217,21 +215,21 @@
|
||||
|
||||
<TextView
|
||||
android:id="@+id/tv_mailbox"
|
||||
style="@style/user_text_style"
|
||||
android:layout_width="80dp"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="电子邮箱*"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginLeft="20dp"
|
||||
style="@style/user_text_style"
|
||||
/>
|
||||
android:text="电子邮箱*" />
|
||||
|
||||
<EditText
|
||||
android:layout_toRightOf="@id/tv_mailbox"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_centerVertical="true"
|
||||
android:hint="请输入邮箱地址"
|
||||
android:id="@+id/et_mailbox"
|
||||
style="@style/user_hint_style"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
/>
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_toRightOf="@id/tv_mailbox"
|
||||
android:hint="请输入邮箱地址" />
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
@@ -245,34 +243,35 @@
|
||||
android:layout_weight="1">
|
||||
|
||||
<TextView
|
||||
style="@style/user_text_style"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="微信"
|
||||
android:layout_marginLeft="20dp"
|
||||
android:layout_centerVertical="true"
|
||||
style="@style/user_text_style"
|
||||
/>
|
||||
android:layout_marginLeft="20dp"
|
||||
android:text="微信" />
|
||||
|
||||
<Button
|
||||
style="@style/user_style"
|
||||
android:layout_width="70dp"
|
||||
android:layout_height="30dp"
|
||||
android:layout_alignParentRight="true"
|
||||
android:layout_centerVertical="true"
|
||||
android:layout_marginRight="10dp"
|
||||
android:text="去绑定"
|
||||
android:textColor="#fff"
|
||||
style="@style/user_style"
|
||||
android:layout_centerVertical="true"
|
||||
/>
|
||||
android:textColor="#fff" />
|
||||
</RelativeLayout>
|
||||
|
||||
<View
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="#F1F0F0" />
|
||||
|
||||
<Button
|
||||
android:layout_marginTop="50dp"
|
||||
android:id="@+id/user_save"
|
||||
style="@style/user_data_style"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:text="保存"
|
||||
/>
|
||||
android:layout_marginTop="50dp"
|
||||
android:text="保存" />
|
||||
</LinearLayout>
|
||||
</androidx.constraintlayout.widget.ConstraintLayout>
|
||||
@@ -47,7 +47,7 @@
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="200dp"
|
||||
android:layout_margin="20dp"
|
||||
android:background="#fff"
|
||||
android:background="@mipmap/white_bg"
|
||||
app:layout_constraintEnd_toEndOf="@+id/linear_hint"
|
||||
app:layout_constraintStart_toStartOf="@+id/linear_hint"
|
||||
app:layout_constraintTop_toBottomOf="@+id/rl_withdraw">
|
||||
@@ -188,9 +188,10 @@
|
||||
<Button
|
||||
android:id="@+id/button"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="70dp"
|
||||
android:layout_height="50dp"
|
||||
android:layout_margin="20dp"
|
||||
android:text="立即提现"
|
||||
style="@style/user_data_style"
|
||||
app:layout_constraintEnd_toEndOf="parent"
|
||||
app:layout_constraintStart_toStartOf="parent"
|
||||
app:layout_constraintTop_toBottomOf="@+id/checkBox" />
|
||||
|
||||
BIN
app/src/main/res/mipmap-xhdpi/white_bg.png
Normal file
BIN
app/src/main/res/mipmap-xhdpi/white_bg.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 9.2 KiB |
@@ -54,12 +54,12 @@
|
||||
<style name="main_style">
|
||||
<item name="android:textColor">#ffffff</item>
|
||||
<item name="android:textSize">15sp</item>
|
||||
<item name="android:background">@drawable/shape_red_radius_bg</item>
|
||||
<item name="android:background">@drawable/user_style</item>
|
||||
</style>
|
||||
<!--‘我的’退出登录设置-->
|
||||
<style name="main_outLogin_style">
|
||||
<item name="android:textColor">#ffffff</item>
|
||||
<item name="android:background">@drawable/main_shape_outlogin</item>
|
||||
<item name="android:background">@drawable/mine_outlogin_ripple</item>
|
||||
</style>
|
||||
<!-- ‘我的’字体设置 -->
|
||||
<style name="main_text_style">
|
||||
@@ -74,7 +74,7 @@
|
||||
|
||||
<!-- ‘我的-用户资料’方框设置-->
|
||||
<style name="user_style">
|
||||
<item name="android:background">@drawable/user_shape</item>
|
||||
<item name="android:background">@drawable/user_rz</item>
|
||||
</style>
|
||||
<!-- ‘我的-用户资料’字体设置-->
|
||||
<style name="user_text_style">
|
||||
@@ -89,7 +89,7 @@
|
||||
<!-- 登录背景设置-->
|
||||
<style name="login_style">
|
||||
<item name="android:textSize">18sp</item>
|
||||
<item name="android:background">@drawable/selector_change_color_btn_bg</item>
|
||||
<item name="android:background">@drawable/login_ripple</item>
|
||||
<item name="android:textColor">@color/colorPrimaryDark</item>
|
||||
</style>
|
||||
<!--'注册'hint设置-->
|
||||
@@ -107,11 +107,15 @@
|
||||
<item name="android:layout_marginRight">20dp</item>
|
||||
<item name="android:textStyle">bold</item>
|
||||
</style>
|
||||
<!-- 状态栏设置-->
|
||||
<!-- '我的-关于'状态栏设置-->
|
||||
<style name="toolbar_style_titleBlack">
|
||||
<item name="android:textColor">#171918</item>
|
||||
<item name="android:textSize">17sp</item>
|
||||
<item name="android:layout_marginRight">20dp</item>
|
||||
<item name="android:textStyle">bold</item>
|
||||
</style>
|
||||
<style name="user_data_style">
|
||||
<item name="android:background">@drawable/user_style</item>
|
||||
<item name="android:textColor">@color/white</item>
|
||||
</style>
|
||||
</resources>
|
||||
Reference in New Issue
Block a user