Commit b0d974cf authored by wanglei's avatar wanglei

...

parent 5f658044
......@@ -218,7 +218,7 @@ public class StartActivity extends AppCompatActivity {
Log.e("jumpNext", "actionId=" + actionId);
if (Objects.equals(actionId, FUNCTION_CLEAN)) {
startActivity(new Intent(this, MainActivity.class));
startActivity(new Intent(this, CleanJunkActivity.class));
finish();
return;
}
......@@ -229,13 +229,13 @@ public class StartActivity extends AppCompatActivity {
return;
}
if (Objects.equals(actionId, FUNCTION_BATTERY)) {
startActivity(new Intent(this, MainActivity.class));
startActivity(new Intent(this, BatteryInfoActivity.class));
finish();
return;
}
if (Objects.equals(actionId, FUNCTION_LARGE_FILE)) {
startActivity(new Intent(this, MainActivity.class));
startActivity(new Intent(this, LargeFileActivity.class));
finish();
return;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment