我很难找到一个解决方案过去一段时间。我想在用户导航回到主屏幕后显示对话框,因为在使用第三方应用程序,呼叫,文本等任何位置时。所以当他回到默认主屏幕,我需要显示一个对话框。这可能吗? 感谢早期的帮助。
此致 Shubham jain
答案 0 :(得分:0)
您可以在onCreate家庭活动方法中使用以下代码,并根据您的要求进行修改。
AlertDialog alertDialog = new AlertDialog.Builder(context).create();
// Setting Dialog Title
alertDialog.setTitle(title);
// Setting Dialog Message
alertDialog.setMessage(message);
if(status != null)
// Setting alert dialog icon
// Setting OK Button
alertDialog.setButton("OK", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int which) {
}
});
// Showing Alert Message
alertDialog.show();