43 lines
1.6 KiB
XML
43 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout 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">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="10dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginEnd="10dp"
|
|
android:background="@drawable/permission_description_popup_bg"
|
|
android:fitsSystemWindows="true"
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="15dp"
|
|
android:layout_marginTop="12dp"
|
|
android:layout_marginEnd="15dp"
|
|
android:text="@string/common_permission_description_title"
|
|
android:textColor="#333333"
|
|
android:textSize="14sp"
|
|
android:textStyle="bold" />
|
|
|
|
<TextView
|
|
android:id="@+id/tv_permission_description_message"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="15dp"
|
|
android:layout_marginTop="5dp"
|
|
android:layout_marginEnd="15dp"
|
|
android:layout_marginBottom="12dp"
|
|
android:textColor="#666666"
|
|
android:lineSpacingExtra="3dp"
|
|
android:textSize="13sp"
|
|
tools:text="xxx" />
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout> |