每次打开应用程序时都会调用 onResume

onResume is Called everytime application is Opened

我想在登录后 onCreate 应该 运行 和重新启动应用程序后 onResume 应该 运行 但我遇到了一些问题。无法理解我的逻辑有什么问题

public class EmployeeActivity extends AppCompatActivity implements AsyncResponse, AsyncResponseSecond {

boolean shouldExecuteOnResume;
@Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_employee);

        name = findViewById(R.id.text_name);
        sp = getSharedPreferences("attendlogin", MODE_PRIVATE);
        String emp_name = sp.getString("name", null);
        name.setText(emp_name);

        in_time_button = findViewById(R.id.buttonlogin);
        out_time_button = findViewById(R.id.buttonlogout);
        close_button = findViewById(R.id.buttonclose);
        close_button.setEnabled(false);
        out_time_button.setEnabled(false);
        In_time = findViewById(R.id.text_in_time);
        Out_time = findViewById(R.id.text_out_time);

        shouldExecuteOnResume = false;
}

@Override
    protected void onResume() {
        if (shouldExecuteOnResume) {
            super.onResume();
            sp1 = getSharedPreferences("InTime", MODE_PRIVATE);
            String in_time_textView = sp1.getString("in_time_sp", null);
            In_time.setText(in_time_textView);
            in_time_button.setEnabled(false);
            out_time_button.setEnabled(true);
        } else {
            shouldExecuteOnResume = true;
        }
}

错误:

--------- beginning of crash
E/AndroidRuntime: FATAL EXCEPTION: main
                  Process: com.example.rtos.rtos, PID: 26179
                  java.lang.RuntimeException: Unable to resume activity {com.example.rtos.rtos/com.example.rtos.rtos.EmployeeActivity}: android.util.SuperNotCalledException: Activity {com.example.rtos.rtos/com.example.rtos.rtos.EmployeeActivity} did not call through to super.onResume()
                      at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3421)
                      at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3461)
                      at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2730)
                      at android.app.ActivityThread.-wrap12(ActivityThread.java)
                      at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1473)
                      at android.os.Handler.dispatchMessage(Handler.java:102)
                      at android.os.Looper.loop(Looper.java:154)
                      at android.app.ActivityThread.main(ActivityThread.java:6123)
                      at java.lang.reflect.Method.invoke(Native Method)
                      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867)
                      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:757)
                   Caused by: android.util.SuperNotCalledException: Activity {com.example.rtos.rtos/com.example.rtos.rtos.EmployeeActivity} did not call through to super.onResume()
                      at android.app.Activity.performResume(Activity.java:6778)
                      at android.app.ActivityThread.performResumeActivity(ActivityThread.java:3398)
                      at android.app.ActivityThread.handleResumeActivity(ActivityThread.java:3461) 
                      at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2730) 
                      at android.app.ActivityThread.-wrap12(ActivityThread.java) 
                      at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1473) 
                      at android.os.Handler.dispatchMessage(Handler.java:102) 
                      at android.os.Looper.loop(Looper.java:154) 
                      at android.app.ActivityThread.main(ActivityThread.java:6123) 
                      at java.lang.reflect.Method.invoke(Native Method) 
                      at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867) 
                      at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:757) 
Application terminated.

我正在使用此 Link (Android - Prevent onResume() function if Activity is loaded for the first time (without using SharedPreferences)) 作为参考,但我仍然遇到错误。

用这个

替换你的 onResume
@Override
    protected void onResume() {
        if (shouldExecuteOnResume) {
            super.onResume();
            sp1 = getSharedPreferences("InTime", MODE_PRIVATE);
            String in_time_textView = sp1.getString("in_time_sp", null);
            In_time.setText(in_time_textView);
            in_time_button.setEnabled(false);
            out_time_button.setEnabled(true);
        } else {
            super.onResume();
            shouldExecuteOnResume = true;
        }
}

您需要确保在覆盖的方法中包含 super.onStop 和 super.onDestroy。这可能是您遇到的问题的一个很好的候选者:

@Override
protected void onStop() {
Log.w(TAG, "App stopped");
super.onStop();
}

@Override
protected void onDestroy() {
Log.w(TAG, "App destroyed");
super.onDestroy();
}

在 if 条件之外尝试 super.onResume();

@Override
    protected void onResume() {
        super.onResume();
        if (shouldExecuteOnResume) {
            sp1 = getSharedPreferences("InTime", MODE_PRIVATE);
            String in_time_textView = sp1.getString("in_time_sp", null);
            In_time.setText(in_time_textView);
            in_time_button.setEnabled(false);
            out_time_button.setEnabled(true);
        } else {
            shouldExecuteOnResume = true;
        }
}