lmw
2023-05-12 f67802a41f9e01444d1115f34ecc6e1beb05fc3b
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
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white">
    <ImageView
        android:id="@+id/iv"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@mipmap/me_phone"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="40dp"/>
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@id/iv"
        android:id="@+id/tv_phone"
        android:layout_centerHorizontal="true"
        android:textSize="12sp"
        android:textColor="@color/black"
        android:layout_marginTop="48dp"
        android:text="您当前的手机号为"/>
    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginStart="22dp"
        android:layout_marginEnd="22dp"
        android:textSize="11sp"
        android:layout_below="@id/tv_phone"
        android:id="@+id/tv_tip"
        android:textColor="@color/textColor66"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="10dp"
        android:text="更换后当前的订单、钱包等信息不变,修改后须使用新手机号登录,仅支持修改到未注册手机号。"/>
 
    <TextView
        android:id="@+id/tv_action"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        style="@style/style_tv_action"
        android:text="更换手机号"
        android:layout_alignParentBottom="true"
        android:layout_marginBottom="15dp"/>
</RelativeLayout>