Cornholio2108 / BestAlarm

0 stars 0 forks source link

App crash when backbutton pressed in mainscreen #25

Closed Cornholio2108 closed 4 years ago

Cornholio2108 commented 4 years ago

Pressing the back button on the main screen (alarm list) will cause the app to crash.

Cornholio2108 commented 4 years ago

Modify MainActivity:

@Override
    public void onBackPressed() {
        ...
        if(fragment instanceof FragAlarms)
        {
            //finish();
            //replace with:
            MainActivity.this.moveTaskToBack(true);
        }
       ...
    }
Cornholio2108 commented 4 years ago

Fixed with FragmentTransaction.commitAllowingStateLoss(); instead of .commit()