が表示されているときに実行が停止しないのはなぜDialogFragment
ですか?
public void someMethod() {
methodeOne();
new FeedbackAlertDialog().show(getFragmentManager(), "tag"); // DialogFragment opened
methodeTwo(); // Looking in logs this is executed when DialogFragment is shown
}
通常、実行は他の処理がまだ終了していないときに停止します。説明してください。