如何在运行时更新DialogFragment
消息?
请参阅我的代码:
CustomDialog dialog = CustomDialog.getInstance(generator);
dialog.setCancelable(false);
dialog.show(getFragmentManager(), "backup_progress");
while(progressBarStatus)
{
Thread.sleep(1000);
TextView messageTextView = (TextView) dialog.getDialog().findViewById(R.id.custom_progress_dialog_message);
messageTextView.setText(message);
getDialog().findViewById(R.id.custom_progress_dialog_message).invalidate();
}
在节目之后,我想改变对话框消息,但它正在抛出异常,我认为我的方式是错误的
答案 0 :(得分:1)
你刚试过:
setTitle("new text")
我认为这是你想要实现的目标。如果不是,我很抱歉,我误解了。