user_dialog_secret.xml 6.31 KB
Newer Older
严久程 committed
1 2
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 4 5 6 7 8 9 10 11 12 13 14 15 16
    xmlns:myapp="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="34dp"
        android:layout_marginRight="34dp"
        android:background="@drawable/user_secret_dialog_bg"
        android:gravity="center"
        android:orientation="vertical">
严久程 committed
17

18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
        <TextView
            android:id="@+id/secrey_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/platform_dp_25"
            android:gravity="center"
            android:text="壹点灵服务使用协议及隐私\n
条款概要"
            android:textColor="#242424"
            android:textSize="18sp"
            android:textStyle="bold" />

        <RelativeLayout
            android:layout_width="match_parent"
            android:layout_height="300dp">
严久程 committed
33 34

            <ScrollView
35 36 37
                android:layout_width="match_parent"
                android:layout_height="300dp"
                android:scrollbars="none">
严久程 committed
38 39

                <RelativeLayout
40 41 42 43 44 45 46
                    android:layout_width="match_parent"
                    android:layout_height="300dp"
                    android:layout_marginLeft="25dp"
                    android:layout_marginRight="25dp">

                    <TextView
                        android:id="@+id/user_secret_desc"
严久程 committed
47 48
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
49 50 51 52 53 54 55 56 57 58 59
                        android:layout_marginTop="30dp"
                        android:lineHeight="20dp"
                        android:textColor="#666666"
                        android:textSize="15sp"
                        tools:text="尊敬的用户,应最新的法律法规及监管政策要求,向您推送以下说明\n
1、您可通过《隐私保护政策》了解我们
会收集哪些个人信息,如何使用,储
存信息等事项;\n
2、我们会采取严格的数据安全保障措施保护您的信息安全;\n
3、点击“同意”,我们将严格按照《隐私保护政策》为您提供服务;
" />
严久程 committed
60 61 62

                </RelativeLayout>
            </ScrollView>
63

严久程 committed
64
            <View
65 66 67 68
                android:layout_width="match_parent"
                android:layout_height="30dp"
                android:layout_alignParentBottom="true"
                android:background="@drawable/user_secret_dectription_bg" />
严久程 committed
69 70 71 72 73

        </RelativeLayout>


        <TextView
74 75 76 77 78 79 80 81 82
            android:id="@+id/tv_content"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="25dp"
            android:layout_marginTop="15dp"
            android:layout_marginRight="25dp"
            android:text="阅读完整版《用户使用协议》、\n《隐私保护政策》"
            android:textColor="#444444"
            android:textSize="15sp" />
严久程 committed
83

84 85 86 87 88 89 90 91 92 93 94
        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginLeft="25dp"
            android:layout_marginTop="@dimen/platform_dp_3"
            android:layout_marginRight="25dp"
            android:text="了解全部的条款内容"
            android:textColor="#666666"
            android:textSize="15sp">

        </TextView>
严久程 committed
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
        <!--<TextView-->
        <!--android:layout_width="wrap_content"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:text="阅读完整版"-->
        <!--android:textColor="#444444"-->
        <!--android:textSize="14dp"/>-->

        <!--<TextView-->
        <!--android:id="@+id/user_use_btn"-->
        <!--android:layout_width="wrap_content"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:text="《用户使用协议》"-->
        <!--android:textColor="#159CEF"-->
        <!--android:textSize="14dp"/>-->

        <!--<TextView-->
        <!--android:layout_width="wrap_content"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:text="、"-->
        <!--android:textColor="#444444"-->
        <!--android:textSize="14dp"/>-->

        <!--<TextView-->
        <!--android:id="@+id/user_secret_protect_btn"-->
        <!--android:layout_width="wrap_content"-->
        <!--android:layout_height="wrap_content"-->
        <!--android:text="《隐私保护政策》"-->
        <!--android:textColor="#159CEF"-->
        <!--android:textSize="14dp"/>-->

        <LinearLayout
126 127 128 129 130 131 132 133 134
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_alignParentBottom="true"
            android:layout_marginLeft="25dp"
            android:layout_marginTop="30dp"
            android:layout_marginRight="25dp"
            android:layout_marginBottom="24dp"
            android:background="#ffffff"
            android:orientation="horizontal">
严久程 committed
135 136

            <TextView
137
                android:id="@+id/user_secret_no_agree"
138 139
                android:layout_width="0dp"
                android:layout_height="40dp"
140 141 142
                android:layout_gravity="center_horizontal"
                android:layout_marginTop="10dp"
                android:layout_weight="1"
143
                android:background="@drawable/user_secret_left_btn_bg"
144 145 146 147
                android:gravity="center"
                android:text="拒绝"
                android:textColor="#999999"
                android:textSize="16dp" />
严久程 committed
148

149 150 151 152 153 154 155 156 157 158 159 160
            <TextView
                android:id="@+id/user_secret_agree"
                android:layout_width="0dp"
                android:layout_height="40dp"
                android:layout_marginLeft="@dimen/platform_dp_10"
                android:layout_weight="1"
                android:background="@drawable/user_secret_right_btn_bg"
                android:gravity="center"
                android:text="同意"
                android:textColor="#FFFFFF"
                android:textSize="16dp"
                android:textStyle="bold" />
严久程 committed
161 162 163
        </LinearLayout>
    </LinearLayout>
</LinearLayout>