Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Sign in / Register
Toggle navigation
S
swiftcleanerphonehelper
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wanglei
swiftcleanerphonehelper
Commits
ad619d54
Commit
ad619d54
authored
Dec 20, 2024
by
wanglei
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/master'
parents
980a2cb9
16332edf
Pipeline
#1412
canceled with stages
Changes
5
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
16 additions
and
16 deletions
+16
-16
CleanJunkActivity.java
.../swiftcleaner/chovey/view/activity/CleanJunkActivity.java
+1
-1
EndCleanJunkActivity.java
...iftcleaner/chovey/view/activity/EndCleanJunkActivity.java
+8
-8
ScreenShotActivity.java
...swiftcleaner/chovey/view/activity/ScreenShotActivity.java
+1
-1
dialog_app_exit_item.xml
app/src/main/res/layout/dialog_app_exit_item.xml
+3
-3
dialog_function_exit_item.xml
app/src/main/res/layout/dialog_function_exit_item.xml
+3
-3
No files found.
app/src/main/java/com/swiftcleaner/chovey/view/activity/CleanJunkActivity.java
View file @
ad619d54
...
...
@@ -382,7 +382,7 @@ public class CleanJunkActivity extends AppCompatActivity {
handler
=
new
Handler
();
Intent
intent
=
new
Intent
(
this
,
EndCleanJunkActivity
.
class
);
handler
.
postDelayed
(()
->
{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
binding
.
radarview
.
setSearching
(
false
);
intent
.
putExtra
(
"cleanstr"
,
str
);
...
...
app/src/main/java/com/swiftcleaner/chovey/view/activity/EndCleanJunkActivity.java
View file @
ad619d54
...
...
@@ -33,7 +33,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
initCustDialog
();
});
binding
.
buttonBatteryInfoCheckNo
.
setOnClickListener
(
v
->{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
startActivity
(
new
Intent
(
this
,
InfoActivity
.
class
));
finish
();
...
...
@@ -52,7 +52,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding
.
buttonAppManagerCheckNo
.
setOnClickListener
(
v
->{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
startActivity
(
new
Intent
(
this
,
BatteryInfoActivity
.
class
));
finish
();
...
...
@@ -71,7 +71,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding
.
buttonWhatsappCheckNo
.
setOnClickListener
(
v
->{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
startActivity
(
new
Intent
(
this
,
WhatsAppActivity
.
class
));
finish
();
...
...
@@ -90,7 +90,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding
.
buttonAppProcessCheckNo
.
setOnClickListener
(
v
->{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
startActivity
(
new
Intent
(
this
,
AppProcessActivity
.
class
));
finish
();
...
...
@@ -109,7 +109,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding
.
buttonCleanJunkCleanNo
.
setOnClickListener
(
v
->{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
startActivity
(
new
Intent
(
this
,
CleanJunkActivity
.
class
));
finish
();
...
...
@@ -128,7 +128,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding
.
buttonLargefilecleanerCleanUp
.
setOnClickListener
(
v
->{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
startActivity
(
new
Intent
(
this
,
LargeFileActivity
.
class
));
finish
();
...
...
@@ -147,7 +147,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding
.
buttonSimilarPhotos
.
setOnClickListener
(
v
->{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
startActivity
(
new
Intent
(
this
,
SimilarPhotosActivity
.
class
));
finish
();
...
...
@@ -166,7 +166,7 @@ public class EndCleanJunkActivity extends AppCompatActivity {
});
binding
.
buttonScreenshot
.
setOnClickListener
(
v
->{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
startActivity
(
new
Intent
(
this
,
ScreenShotActivity
.
class
));
finish
();
...
...
app/src/main/java/com/swiftcleaner/chovey/view/activity/ScreenShotActivity.java
View file @
ad619d54
...
...
@@ -151,7 +151,7 @@ public class ScreenShotActivity extends AppCompatActivity {
handler
=
new
Handler
(
Looper
.
getMainLooper
());
Intent
intent
=
new
Intent
(
this
,
EndCleanJunkActivity
.
class
);
handler
.
postDelayed
(()
->
{
AdmobHelper
.
INSTANCE
.
show
AppOpen
Ad
(
this
,
AdmobHelper
.
INSTANCE
.
show
Interstitial
Ad
(
this
,
()
->
{
binding
.
radarview
.
setSearching
(
false
);
intent
.
putExtra
(
"cleanstr"
,
cleanSize
);
...
...
app/src/main/res/layout/dialog_app_exit_item.xml
View file @
ad619d54
...
...
@@ -9,7 +9,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width=
"337dp"
android:layout_height=
"
410dp
"
>
android:layout_height=
"
wrap_content
"
>
<LinearLayout
android:layout_width=
"match_parent"
...
...
@@ -96,12 +96,12 @@
<com.tool.zxdemo.utils.NativeView
android:id=
"@+id/fl_ad"
android:layout_width=
"match_parent"
android:layout_height=
"
150dp
"
android:layout_height=
"
wrap_content
"
android:layout_marginHorizontal=
"10dp"
android:layout_marginTop=
"28dp"
>
<ImageView
android:src=
"@mipmap/gg"
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
/>
</com.tool.zxdemo.utils.NativeView>
...
...
app/src/main/res/layout/dialog_function_exit_item.xml
View file @
ad619d54
...
...
@@ -9,7 +9,7 @@
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width=
"337dp"
android:layout_height=
"
410dp
"
>
android:layout_height=
"
wrap_content
"
>
<LinearLayout
android:layout_width=
"match_parent"
...
...
@@ -84,7 +84,7 @@
<com.tool.zxdemo.utils.NativeView
android:id=
"@+id/fl_ad"
android:layout_width=
"match_parent"
android:layout_height=
"
150dp
"
android:layout_height=
"
wrap_content
"
android:layout_marginHorizontal=
"10dp"
android:layout_marginTop=
"31dp"
>
...
...
@@ -92,7 +92,7 @@
android:layout_width=
"match_parent"
android:layout_height=
"match_parent"
android:src=
"@mipmap/gg"
/>
/>
</com.tool.zxdemo.utils.NativeView>
</LinearLayout>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment