У меня есть Activity, который вызывает setContentView с этим XML:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
>
<fragment android:name="org.vt.indiatab.GroupFragment"
android:id="@+id/home_groups"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" />
<..some other fragments ...>
</LinearLayout>
GroupFragment расширяет фрагмент, и все хорошо. Тем не менее, я показываю DialogFragment из GroupFragment. Это показывает правильно, ОДНАКО, когда экран вращается, я получаю Force Close.
Каким образом можно отобразить диалоговое окно Dialog из другого фрагмента, отличного от DialogFragment.show(FragmentManager, String)?