12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- <?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:background="#ffffff"
- android:orientation="vertical"
- android:paddingLeft="10dp"
- android:paddingRight="10dp"
- android:paddingBottom="10dp"
- android:elevation="1dp"
- android:translationZ="4dp"
- android:outlineAmbientShadowColor="#B309101D"
- android:shadowColor="#aa22ff22"
- android:shadowRadius="10"
- android:shadowDx="0"
- android:shadowDy="0"
- android:outlineProvider="bounds"
- >
- <TextView
- android:id="@+id/tv_title"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#333333"
- android:textStyle="bold"
- android:text="权限使用说明"
- android:layout_marginTop="15dp"
- android:textSize="16sp" />
- <TextView
- android:id="@+id/tv_explanation"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:textColor="#333333"
- android:layout_marginTop="15dp"
- android:lineSpacingMultiplier="1.2"
- android:text="拒绝或取消授权将影响以上功能的使用,不影响使用其他服务。"
- android:textSize="14sp" />
- <!-- <TextView-->
- <!-- android:id="@+id/tv_explanation"-->
- <!-- android:layout_width="match_parent"-->
- <!-- android:layout_height="wrap_content"-->
- <!-- android:padding="8dp"-->
- <!-- android:textColor="#2f2f31"-->
- <!-- android:text="xxx"-->
- <!-- android:textSize="16sp" />-->
- </LinearLayout>
|