Validate not null in onDestroy event for the media player

This commit is contained in:
dtvv 2018-10-02 08:54:38 -05:00
parent 05d04b69af
commit 5ad7d32bbf
2 changed files with 8 additions and 4 deletions

View file

@ -284,9 +284,11 @@ public class BoardActivity extends CustomActivity {
super.onDestroy();
//Release the media player
if(mediaPlayer!=null){
mediaPlayer.release();
mediaPlayer = null;
}
}
public void loadUserImage(){
//Search for a existing photo

View file

@ -161,9 +161,11 @@ public class IntroActivity extends CustomActivity {
super.onDestroy();
//Release the media player
if(mediaPlayer!=null){
mediaPlayer.release();
mediaPlayer = null;
}
}
@OnClick(R.id.btnImportAccount)
public void importAccount() {