为什么显示时执行不停止DialogFragment
?
public void someMethod() {
methodeOne();
new FeedbackAlertDialog().show(getFragmentManager(), "tag"); // DialogFragment opened
methodeTwo(); // Looking in logs this is executed when DialogFragment is shown
}
通常,当其他一些尚未完成时,执行会停止。你能解释一下吗。