Files
Xuewang365OSHonor/app/src/main/res/layout/permission_description_popup.xml
tongtongstudio 58b3e18727 version:1.8.9
fix:
update:密码界面统一,增加权限说明页面
2024-09-05 09:36:49 +08:00

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_marginLeft="10dp"
android:layout_marginTop="5dp"
android:layout_marginRight="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_marginLeft="15dp"
android:layout_marginTop="12dp"
android:layout_marginRight="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_marginLeft="15dp"
android:layout_marginTop="5dp"
android:layout_marginRight="15dp"
android:layout_marginBottom="12dp"
android:textColor="#666666"
android:lineSpacingExtra="3dp"
android:textSize="13sp"
tools:text="xxx" />
</LinearLayout>
</FrameLayout>