其他分享
首页 > 其他分享> > android – 显示一个对话框将调用哪个活动生命周期函数?

android – 显示一个对话框将调用哪个活动生命周期函数?

作者:互联网

我用 – 创建了一个简单的对话框 –

Dialog dialog = new Dialog(Myactivity.this);
dialog.setContentView(R.layout.myLayout);
dialog.show();

当我显示和关闭此对话框时,我想更新MyActivity中的textView.所以我在onResume()中放了一些东西,假设它在你关闭一个对话框时被调用.
这是真的吗?或者我们还有其他更新此textView的方法吗?

解决方法:

您可以更新实施OnDismissListener interface的TextView:

dialog.setOnDismissListener(new DialogInterface.OnDismissListener() {
    @Override
    public void onDismiss(DialogInterface dialogInterface) {
            //update your textView
    }
});

标签:android,android-dialog
来源: https://codeday.me/bug/20190830/1768723.html