ht_snackbar_view.xml
1.4 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout 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:background="@drawable/ht_mid_snack_bg"
android:padding="10dp"
android:orientation="vertical"
android:layout_margin="10dp"
android:layout_centerInParent="true"
android:layout_height="wrap_content">
<TextView
android:id="@+id/ht_snackbar_title"
android:text="权限使用说明"
android:textStyle="bold"
android:textColor="#000000"
android:singleLine="true"
android:gravity="center_vertical"
android:layout_width="wrap_content"
android:layout_marginVertical="5dp"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/ht_snackbar_content_tv"
tools:text="用于识别设备,保证运营商免流服务,用于账号登录、安全保障等功能"
android:textColor="#555555"
android:lineSpacingExtra="5dp"
android:gravity="center_vertical"
android:layout_gravity="center"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
</RelativeLayout>