nilupeng
2022-08-11 5479c528b0ce8f210ef71898a026f662f4275f08
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<?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:background="@color/white"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">
 
    <com.runt.open.mvvm.widgets.TitleBarView
        android:id="@+id/title_bar"
        style="@style/titlebar"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toTopOf="parent"
        app:leftDrawable="@mipmap/icon_white_back"
        app:leftTint="@color/black"
        app:titleText="财务设置"
        />
 
    <TextView
        android:id="@+id/lin_realname"
        style="@style/lin_txt"
        app:layout_constraintTop_toBottomOf="@id/title_bar"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:text="真实姓名" />
    <TextView
        android:id="@+id/txt_realname"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="@dimen/default_margin_lr"
        android:textSize="14sp"
        android:textColor="@color/txt_enable"
        app:layout_constraintTop_toTopOf="@id/lin_realname"
        app:layout_constraintBottom_toBottomOf="@id/lin_realname"
        app:layout_constraintRight_toRightOf="parent"  />
    <TextView
        android:id="@+id/lin_pass"
        style="@style/lin_txt"
        app:layout_constraintTop_toBottomOf="@id/lin_realname"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:drawableRight="@mipmap/arrow_right"
        android:text="支付密码" />
    <TextView
        android:id="@+id/lin_alipay"
        style="@style/lin_txt"
        app:layout_constraintTop_toBottomOf="@id/lin_pass"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:text="支付宝账号" />
    <TextView
        android:id="@+id/txt_alipay"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginRight="@dimen/default_margin_lr"
        android:textSize="14sp"
        android:textColor="@color/txt_enable"
        app:layout_constraintTop_toTopOf="@id/lin_alipay"
        app:layout_constraintBottom_toBottomOf="@id/lin_alipay"
        app:layout_constraintRight_toRightOf="parent"  />
    <View
        app:layout_constraintTop_toBottomOf="@id/title_bar"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="@color/color_gray8" />
    <View
        app:layout_constraintTop_toBottomOf="@id/lin_realname"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="@color/color_gray8" />
    <View
        app:layout_constraintTop_toBottomOf="@id/lin_pass"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="@color/color_gray8" />
    <View
        app:layout_constraintTop_toBottomOf="@id/lin_alipay"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        android:layout_width="match_parent"
        android:layout_height="0.5dp"
        android:background="@color/color_gray8" />
 
</androidx.constraintlayout.widget.ConstraintLayout>