Why execution doesn’t stop when DialogFragment is shown?
public void someMethod() {
methodeOne();
new FeedbackAlertDialog().show(getFragmentManager(), "tag"); // DialogFragment opened
methodeTwo(); // Looking in logs this is executed when DialogFragment is shown
}
Usually execution stops when some other is not finished yet. Can you explain please.
show()is an asynchronous call. The dialog is not even on the screen by the timemethodeTwo()is called.