lmw
2023-06-20 7e4a923b472a1ffb9d6deeb80302551ba4178ca3
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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent"
    android:orientation="vertical"
    android:gravity="center_horizontal"
    android:background="@color/white"
    android:layout_height="match_parent">
 
    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="60dp"
        android:src="@mipmap/me_phone"/>
 
    <TextView
        android:id="@+id/tv_phone"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="12dp"
        android:text="您当前的手机号为139****4321"
        android:textColor="#ff333333"
        android:textSize="12sp"
        android:textStyle="bold"/>
 
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="6dp"
        android:layout_marginStart="23dp"
        android:layout_marginEnd="23dp"
        android:text="更换后当前的订单、钱包等信息不变,修改后须使用新手机号登录,仅支持修改到未注册手机号。"
        android:textColor="#ff666666"
        android:textSize="11sp"
        android:textStyle="bold"/>
 
    <include layout="@layout/include_weight_height"/>
 
    <TextView
        android:id="@+id/tv_change_phone"
        android:layout_width="match_parent"
        android:text="更换手机号"
        android:textColor="#ffffffff"
        android:gravity="center"
        android:layout_marginBottom="14dp"
        android:layout_marginTop="44dp"
        android:layout_marginStart="14dp"
        android:layout_marginEnd="14dp"
        android:background="@drawable/bg_login"
        android:textSize="14sp"
        android:layout_height="48dp"/>
 
</LinearLayout>