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
aad8bace
Commit
aad8bace
authored
Dec 20, 2024
by
Your Name
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
.
parent
8d980b04
Pipeline
#1393
canceled with stages
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
1 deletion
+24
-1
StartActivity.java
.../com/swiftcleaner/chovey/view/activity/StartActivity.java
+24
-1
No files found.
app/src/main/java/com/swiftcleaner/chovey/view/activity/StartActivity.java
View file @
aad8bace
package
com
.
swiftcleaner
.
chovey
.
view
.
activity
;
import
static
com
.
swiftcleaner
.
chovey
.
model
.
bean
.
Global
.
FUNCTION_APP_MANAGER
;
import
static
com
.
swiftcleaner
.
chovey
.
model
.
bean
.
Global
.
FUNCTION_APP_PROCESS
;
import
static
com
.
swiftcleaner
.
chovey
.
model
.
bean
.
Global
.
FUNCTION_BATTERY
;
import
static
com
.
swiftcleaner
.
chovey
.
model
.
bean
.
Global
.
FUNCTION_CLEAN
;
import
static
com
.
swiftcleaner
.
chovey
.
model
.
bean
.
Global
.
FUNCTION_LARGE_FILE
;
import
static
com
.
swiftcleaner
.
chovey
.
model
.
bean
.
Global
.
FUNCTION_SCREENSHOT
;
import
static
com
.
swiftcleaner
.
chovey
.
model
.
bean
.
Global
.
FUNCTION_SIMILAR_PHOTOS
;
import
static
com
.
swiftcleaner
.
chovey
.
model
.
bean
.
Global
.
FUNCTION_WHATS_APP
;
import
androidx.activity.result.ActivityResultLauncher
;
import
androidx.activity.result.contract.ActivityResultContracts
;
...
...
@@ -245,7 +249,26 @@ public class StartActivity extends AppCompatActivity {
finish
();
return
;
}
if
(
Objects
.
equals
(
actionId
,
FUNCTION_WHATS_APP
))
{
startActivity
(
new
Intent
(
this
,
WhatsAppActivity
.
class
));
finish
();
return
;
}
if
(
Objects
.
equals
(
actionId
,
FUNCTION_APP_PROCESS
))
{
startActivity
(
new
Intent
(
this
,
AppProcessActivity
.
class
));
finish
();
return
;
}
if
(
Objects
.
equals
(
actionId
,
FUNCTION_SIMILAR_PHOTOS
))
{
startActivity
(
new
Intent
(
this
,
SimilarPhotosActivity
.
class
));
finish
();
return
;
}
if
(
Objects
.
equals
(
actionId
,
FUNCTION_SCREENSHOT
))
{
startActivity
(
new
Intent
(
this
,
ScreenShotActivity
.
class
));
finish
();
return
;
}
startActivity
(
new
Intent
(
this
,
MainActivity
.
class
));
finish
();
...
...
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