83 lines
3.2 KiB
XML
83 lines
3.2 KiB
XML
<?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:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingBottom="@dimen/dp_18"
|
|
android:orientation="vertical"
|
|
android:background="#fff">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:layout_marginTop="@dimen/dp_10"
|
|
android:textColor="#333333"
|
|
android:textSize="@dimen/sp_18"
|
|
android:textStyle="bold"
|
|
tools:text="标题" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginLeft="@dimen/dp_24"
|
|
android:layout_marginTop="@dimen/dp_11"
|
|
android:layout_marginRight="@dimen/dp_24"
|
|
android:layout_marginBottom="@dimen/dp_20"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:id="@+id/tv_content"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textColor="#ff333333"
|
|
android:textSize="@dimen/dp_13"
|
|
tools:text="感谢您信任并使用大河好运司机端!
|
|
我们非常重视您的个人信息和隐私保护。为了更好地保障您的个人权益,在使用我们的产品前,请务必审慎阅读" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="《隐私协议》" />
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="
|
|
内的所有条款,我们将严格按照经您同意的条款使用您的个人信息,以便为您提供更好的服务。
|
|
您点击“同意”的行为即表示您已阅读" />
|
|
</LinearLayout>
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="1dp"
|
|
android:background="#F7F7F7" />
|
|
|
|
<LinearLayout
|
|
android:layout_marginTop="@dimen/dp_5"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<Button
|
|
android:layout_marginLeft="@dimen/dp_26"
|
|
android:id="@+id/tv_cancel"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_43"
|
|
android:layout_weight="1"
|
|
android:text="次级按钮"
|
|
android:textSize="@dimen/sp_14"
|
|
android:textColor="#FF2039"
|
|
android:background="@null"/>
|
|
<Button
|
|
android:layout_marginLeft="@dimen/dp_15"
|
|
android:layout_marginRight="@dimen/dp_26"
|
|
android:id="@+id/tv_confirm"
|
|
android:layout_width="0dp"
|
|
android:layout_height="@dimen/dp_43"
|
|
android:layout_weight="1"
|
|
android:text="主要按钮"
|
|
android:textSize="@dimen/sp_14"
|
|
android:textColor="#ffffff"
|
|
android:background="#ccc"/>
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|