<?xml version="1.0" encoding="utf-8"?><!-- 权限说明 -->
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="match_parent"
|
android:paddingTop="30dp"
|
android:paddingLeft="10dp"
|
android:paddingRight="10dp"
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:background="@drawable/shape_permission_introduction_bg"
|
android:gravity="center_vertical"
|
android:orientation="vertical"
|
android:padding="5dp">
|
|
|
<TextView
|
android:id="@+id/tv_title"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:text="申请存储权限说明"
|
android:textColor="#000000"
|
android:textSize="16sp"></TextView>
|
|
<TextView
|
android:id="@+id/tv_content"
|
android:layout_width="match_parent"
|
android:layout_height="wrap_content"
|
android:layout_marginTop="5dp"
|
android:text="内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容内容"
|
android:textColor="#000000">
|
|
</TextView>
|
|
</LinearLayout>
|
|
|
</FrameLayout>
|