user_mine_activity_pwdcheck.xml 2.71 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
        app:pa_title_text="更换手机" />
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="@dimen/divide_line_stroke_width"
        android:layout_marginTop="14dp"
        android:background="#EDEDED" />

    <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/check_password"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="@color/white"
            android:inputType="textPassword"
            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" />
    <ImageView
        android:layout_width="match_parent"
        android:layout_height="@dimen/divide_line_stroke_width"
        android:layout_marginTop="14dp"
        android:background="#EDEDED" />
    <com.ydl.ydlcommon.view.RoundCornerButton
        android:id="@+id/change_next"
        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
66
        app:pa_round_btn_bg="@color/platform_main_theme"
ydl committed
67 68
        app:pa_round_btn_radio_size="5dp" />
</LinearLayout>