Reputation: 1162
package com.example.test3;
import java.util.HashMap;
import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.app.DialogFragment;
import android.app.FragmentManager;
import android.content.Context;
import android.content.DialogInterface;
import android.content.SharedPreferences;
import android.util.Log;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
import android.widget.EditText;
public class Test3 extends Activity {
Button testShowPinDialogButton;
public AlertDialog alertCreate;
AlertDialog.Builder alert;
private HashMap<String, Boolean> pinDialogState;
EditText input;
Context context;
private String tag = "Test3";
private String click1 = "click1";
private SharedPreferences sharedPreferences;
private SharedPreferences.Editor editor;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_test3);
context = this;
sharedPreferences = getPreferences(MODE_PRIVATE);
editor = sharedPreferences.edit();
testShowPinDialogButton = (Button) findViewById(R.id.testShowPinDialogBbutton);
testShowPinDialogButton.setOnClickListener(showPinDialog);
pinDialogState = new HashMap<String, Boolean>();
Log.d(tag, "onCreate()");
}
private OnClickListener showPinDialog = new OnClickListener() {
@Override
public void onClick(View v) {
launchDialog();
}
};
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_test3, menu);
return true;
}
protected void launchDialog() {
alert = new AlertDialog.Builder(context);
alert.setTitle("Title");
alert.setMessage("Message");
alert.setPositiveButton("Ok", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
}
});
alert.setNegativeButton("Cancel",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
dialog.dismiss();
pinDialogState.put("click1", false);
}
});
Log.d(tag, "launchDialog()");
alertCreate = alert.create();
alertCreate.show();
}
@Override
protected void onPause() {
super.onPause();
Log.d(tag, "onPause()");
if (alertCreate != null) {
alertCreate.dismiss();
editor.putBoolean(click1, true);
}
}
@Override
protected void onRestart() {
super.onRestart();
}
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
Log.d("Test3", "onResume()");
alertCreate.show();
}
@Override
protected void onDestroy() {
super.onDestroy();
Log.d("Test3", "onDestroy()");
}
}
I am struggling with the logic of how to re-show my alert dialog after it has been dismissed from the onPause(). I was thinking about shared preferences but how would I know that the dialog was being shown before the activity got destroyed and now that the user is coming back into the app, I have to show the dialog. I have also heard that simply calling alertDialog.show() will not work after the activity has been destroyed. What can I do? Thank you.
Upvotes: 0
Views: 780
Reputation: 989
Maybe Crouton works, i dont know, but try:
http://www.grokkingandroid.com/useful-android-libraries-crouton/
Crouton is Nofitication Library, simple, easy, fast!
Upvotes: 2
Reputation: 77904
You are right about to use shared Preferences.
In onPouse()
method save your alert message as flag and open it onResume()
:
public class Test3 extends Activity {
....
SharedPreferences mPrefs = context.getSharedPreferences("MyPrefs", 0);
....
@Override
protected void onPause() {
super.onPause();
Log.d(tag, "onPause()");
SharedPreferences.Editor editor = mPrefs.edit();
editor.putBoolean("isShowed", alertCreate );
editor.commit();
if (alertCreate != null) {
alertCreate.dismiss();
editor.putBoolean(click1, true);
}
}
....
@Override
protected void onResume() {
// TODO Auto-generated method stub
super.onResume();
Log.d("Test3", "onResume()");
boolean isShow = mPrefs.getBoolean("isShowed", false);
if(isShow == true){
alertCreate.show();
.....
}
}
}
Upvotes: 1