1+ <?xml version =" 1.0" encoding =" utf-8" ?>
2+ <ScrollView xmlns : android =" http://schemas.android.com/apk/res/android"
3+ xmlns : app =" http://schemas.android.com/apk/res-auto"
4+ xmlns : tools =" http://schemas.android.com/tools"
5+ android : orientation =" vertical"
6+ android : layout_width =" match_parent"
7+ android : layout_height =" match_parent"
8+ >
9+ <LinearLayout
10+ android : layout_width =" match_parent"
11+ android : layout_height =" wrap_content"
12+ android : orientation =" vertical"
13+ android : gravity =" center_horizontal" >
14+
15+ <TextView
16+ android : id =" @+id/tv_control"
17+ android : layout_width =" match_parent"
18+ android : layout_height =" wrap_content"
19+ android : layout_marginTop =" 5dp"
20+ android : textSize =" @dimen/text_size_small"
21+ android : text =" 自动发表情插件(点击跳转开启)"
22+ android : textColor =" @color/blue_light"
23+ android : gravity =" center"
24+ />
25+
26+ <TextView
27+ android : layout_width =" match_parent"
28+ android : layout_height =" wrap_content"
29+ android : layout_marginTop =" 5dp"
30+ android : textSize =" @dimen/text_size_small"
31+ android : text =" 可快速自动发送烟花制造聊天对话页连续放烟花的效果,过年庆祝下,平时也可以快速丢炸弹玩。需先找到辅助功能【自动发送表情】开启才有效"
32+ />
33+
34+ <View
35+ android : layout_marginTop =" 10dp"
36+ android : layout_marginBottom =" 10dp"
37+ style =" @style/view_line" />
38+
39+ <TextView
40+ android : layout_width =" wrap_content"
41+ android : layout_height =" wrap_content"
42+ android : text =" 设置发送文本,如表情[烟花]:" />
43+ <EditText
44+ android : id =" @+id/et_emoji"
45+ android : layout_width =" match_parent"
46+ android : layout_height =" wrap_content"
47+ tools : text =" [炸弹]"
48+ android : text =" [烟花]"
49+ android : singleLine =" true"
50+ />
51+
52+ <View
53+ android : layout_marginTop =" 10dp"
54+ android : layout_marginBottom =" 10dp"
55+ style =" @style/view_line" />
56+
57+ <TextView
58+ android : layout_width =" wrap_content"
59+ android : layout_height =" wrap_content"
60+ android : text =" 设置进入一次聊天页自动发送次数(0为无限):" />
61+ <NumberPicker
62+ android : id =" @+id/np_times"
63+ android : layout_width =" wrap_content"
64+ android : layout_height =" wrap_content"
65+ />
66+
67+ <View
68+ android : layout_marginTop =" 10dp"
69+ android : layout_marginBottom =" 10dp"
70+ style =" @style/view_line" />
71+
72+ <TextView
73+ android : layout_width =" wrap_content"
74+ android : layout_height =" wrap_content"
75+ android : text =" 设置每次发送间隔时间(ms):" />
76+ <NumberPicker
77+ android : id =" @+id/np_interval"
78+ android : layout_width =" wrap_content"
79+ android : layout_height =" wrap_content"
80+ />
81+
82+ </LinearLayout >
83+
84+ </ScrollView >
0 commit comments