user_secret_dialog_layout.xml 2.68 KB
Newer Older
徐健 committed
1 2 3 4 5 6 7 8 9 10 11
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:gravity="center">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
yjiucheng committed
12 13
        android:layout_marginLeft="34dp"
        android:layout_marginRight="34dp"
徐健 committed
14 15 16 17 18 19 20
        android:orientation="vertical"
        android:gravity="center_horizontal"
        android:background="@drawable/user_secret_dialog_bg">

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
徐健 committed
21
            android:text="您需要同意本隐私保护协议\n才能继续使用壹点灵"
徐健 committed
22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
            android:textSize="18dp"
            android:textStyle="bold"
            android:textColor="#242424"
            android:gravity="center"
            android:layout_marginLeft="46dp"
            android:layout_marginRight="46dp"
            android:layout_marginTop="36dp"/>

        <TextView
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="若您不同意隐私保护政策,您将无法正常使用相关附加功能或无法达到我们拟达到的功能效果。"
            android:layout_marginLeft="25dp"
            android:layout_marginRight="25dp"
            android:textSize="14dp"
徐健 committed
37
            android:lineSpacingExtra="3dp"
徐健 committed
38
            android:textColor="#999999"
徐健 committed
39
            android:layout_marginTop="13dp"
徐健 committed
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
            android:layout_marginBottom="30dp"/>

            <TextView
                android:id="@+id/user_secret_dialog_agree"
                android:layout_width="match_parent"
                android:layout_marginLeft="25dp"
                android:layout_marginRight="25dp"
                android:layout_height="44dp"
                android:gravity="center"
                android:text="同意并继续"
                android:textSize="16dp"
                android:textColor="#ffffff"
                android:background="@drawable/user_secret_right_btn_bg"/>
            <TextView
                android:id="@+id/user_secret_dialog_no_agree"
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:gravity="center"
                android:text="仍不同意并退出"
                android:textSize="13dp"
                android:layout_marginTop="10dp"
                android:textColor="#999999"
                android:layout_marginBottom="24dp"/>


    </LinearLayout>

</LinearLayout>