123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:gravity="center"
- android:orientation="vertical">
- <TextView
- android:id="@+id/tv_new_num"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:visibility="gone"
- android:padding="5dp"
- android:drawableLeft="@drawable/xiala"
- android:drawablePadding="5dp"
- android:gravity="center"
- android:text="下拉刷新"
- android:textColor="@android:color/white"
- android:textSize="12dp" />
- <LinearLayout
- android:id="@+id/ll_content"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:padding="25dp"
- android:orientation="vertical">
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="欢迎登陆俊友!\n"
- android:textColor="@color/black_2" />
- <TextView
- android:id="@+id/tvContent"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="我们依据最新的监管要求更新了俊友《用户协议》和《隐私政策》,特向您说明如下:"
- android:textColor="@color/black_2" />
- <TextView
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:text="\n1.为了帮助您发现更多有趣的内容,会根据您的使用习惯推荐更好的瞬间;
- \n
- \n2.基于您的授权,我们可能会获取您的位置等信息,您可以选择拒绝或取消授权;
- \n
- \n3.您可灵活设置发布瞬间的可见范围和互动权限;
- \n
- \n4.未经您同意,我们不会从第三方获取!"
- android:textColor="@color/black_2"
- android:layout_marginBottom="10dp"/>
- </LinearLayout>
- </LinearLayout>
|