user_mine_activity_phonechange.xml 4.89 KB
Newer Older
ydl committed
1 2 3 4 5 6 7 8 9
<?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"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <com.ydl.ydlcommon.view.TitleBar
        android:layout_width="match_parent"
        android:layout_height="@dimen/title_bar_height"
10 11
        app:pa_left_start_icon="@drawable/platform_common_back"
        android:background="@color/platform_white"
ydl committed
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 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115
        app:pa_title_text="更换手机" />
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="14dp"
        android:orientation="vertical">

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="@dimen/divide_line_stroke_width"
            android:background="#EDEDED" />
        <com.ydl.ydlcommon.view.JumpTextView
            android:id="@+id/jtv_country"
            android:layout_width="match_parent"
            android:layout_height="45dp"
            android:background="@color/white"
            app:pa_jump_tv_icon="@drawable/platform_icon_country"
            app:pa_jump_tv_left_text="中国    +86"
            app:pa_jump_tv_left_icon_hight="20dp"
            app:pa_jump_tv_left_icon_width="20dp"/>
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="@dimen/divide_line_stroke_width"
            android:background="#EDEDED" />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/white"
            android:orientation="horizontal">

            <TextView
                android:layout_width="100dp"
                android:layout_height="wrap_content"
                android:padding="@dimen/platform_default_dis_size"
                android:text="新手机" />

            <EditText
                android:id="@+id/new_phone"
                android:layout_width="0dp"
                android:layout_height="match_parent"
                android:layout_weight="1"
                android:background="@color/white"
                android:inputType="number"
                android:padding="@dimen/platform_default_dis_size"
                android:textColorHint="#333333" />

            <TextView
                android:id="@+id/change_get_code"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:padding="@dimen/platform_default_dis_size"
                android:text="发送验证码"
                android:textColor="#49D281" />
        </LinearLayout>

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="@dimen/divide_line_stroke_width"
            android:background="#EDEDED" />
        <ImageView
            android:layout_width="match_parent"
            android:layout_height="@dimen/divide_line_stroke_width"
            android:layout_marginTop="14dp"
            android:background="#EDEDED" />
        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="@color/white"
            android:orientation="horizontal">

            <TextView
                android:layout_width="100dp"
                android:layout_height="wrap_content"
                android:padding="@dimen/platform_default_dis_size"
                android:text="验证码" />

            <EditText
                android:id="@+id/change_code"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:background="@color/white"
                android:inputType="textVisiblePassword"
                android:padding="@dimen/platform_default_dis_size"
                android:textColorHint="#333333" />
        </LinearLayout>

        <ImageView
            android:layout_width="match_parent"
            android:layout_height="@dimen/divide_line_stroke_width"
            android:background="#EDEDED" />


        <com.ydl.ydlcommon.view.RoundCornerButton
            android:id="@+id/change_submit"
            style="?android:attr/borderlessButtonStyle"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="@dimen/platform_default_dis_size"
            android:layout_marginRight="@dimen/platform_default_dis_size"
            android:layout_marginTop="14dp"
            android:text="确认更换"
            android:textColor="@color/white"
            android:textSize="16sp"
            app:pa_round_btn_active_bg="@color/white"
konghaorui committed
116
            app:pa_round_btn_bg="@color/platform_main_theme"
ydl committed
117 118 119 120 121 122
            app:pa_round_btn_radio_size="5dp" />


    </LinearLayout>

</LinearLayout>