Sometimes I want to display a dialog when the app launches. For that purpose I created a custom dialog named LoginDialog and I am using an Application class java. However, I am having trouble showing this dialog. For one I cannot call getsupportfragmentmanager() or anything alike. Plus, the code replies that loginDialog has no show method which I thought was a standard operation of the AppCompatDialogFragment class. Any tips on how to solve this problem are appreciated!
The code:
public class ApplicationClass extends Application {
@Override
public void onCreate() {
super.onCreate();
SharedPreferences sharedPreferences = getSharedPreferences("Settings", MODE_PRIVATE);
SharedPreferences.Editor sEditor = sharedPreferences.edit();
if (sharedPreferences.getInt("EmailVer", 0) == 5) {
showDialog();
}
Log.i("Abertura", "onCreate fired");
}
private void showDialog() {
LoginDialog loginDialog = new LoginDialog();
loginDialog.show(get);
}
}
Maybe try to show a dialog in the Activity class? You can load SharedPreferences and check if You want to show a dialog in the Application class but show a dialog in Activity. It will look like this:
ApplicationClass:
MainActivity: