File tree Expand file tree Collapse file tree 3 files changed +12
-5
lines changed
java/cn/ypz/com/killetomrxmaterialdesignutil Expand file tree Collapse file tree 3 files changed +12
-5
lines changed Original file line number Diff line number Diff line change 23
23
<activity
24
24
android : name =" .MainActivity"
25
25
android : launchMode =" singleInstance" >
26
-
26
+ <intent-filter >
27
+ <action android : name =" android.intent.action.MAIN" />
28
+ <category android : name =" android.intent.category.LAUNCHER" />
29
+ </intent-filter >
27
30
</activity >
28
31
<activity
29
32
android : name =" .PermissionDIYActivity"
36
39
<activity android : name =" .QRCodeActivity" />
37
40
<activity android : name =" .PhotoActivity" />
38
41
<activity android : name =" .BlurActivity" >
39
- <intent-filter >
40
- <action android : name =" android.intent.action.MAIN" />
41
42
42
- <category android : name =" android.intent.category.LAUNCHER" />
43
- </intent-filter >
44
43
</activity >
45
44
</application >
46
45
Original file line number Diff line number Diff line change @@ -18,5 +18,6 @@ class MainActivity : BaseActivity() {
18
18
spiderweb.setOnClickListener { easyStartActivity(SpiderWebActivity ::class .java) }
19
19
qrcode.setOnClickListener { easyStartActivity(QRCodeActivity ::class .java) }
20
20
photo.setOnClickListener { easyStartActivity(PhotoActivity ::class .java) }
21
+ blur.setOnClickListener { easyStartActivity(BlurActivity ::class .java) }
21
22
}
22
23
}
Original file line number Diff line number Diff line change 80
80
android : theme =" @style/RxRaisedDropPrimaryStyle2"
81
81
android : layout_gravity =" center_horizontal" />
82
82
83
+ <cn .ypz.com.killetomrxmateria.rxwidget.raisebutton.RxRaisedDropButton
84
+ android : id =" @+id/blur"
85
+ android : layout_width =" wrap_content"
86
+ android : layout_height =" wrap_content"
87
+ android : text =" blur"
88
+ android : theme =" @style/RxRaisedDropPrimaryStyle2"
89
+ android : layout_gravity =" center_horizontal" />
83
90
84
91
</LinearLayout >
85
92
You can’t perform that action at this time.
0 commit comments