У меня есть два фрагмента в действии:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:id="@+id/mainlayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<fragment
class="com.eyecreate.fragment1"
android:id="@+id/fragment1"
android:layout_height="match_parent"
android:layout_width="269dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true" />
<fragment
android:id="@+id/fragment2"
android:layout_toRightOf="@id/fragment1"
android:layout_alignTop="@id/fragment1"
android:layout_alignBottom="@id/fragment1"
android:layout_alignParentRight="true"
class="com.eyecreate.fragment2"
android:layout_height="match_parent"
android:layout_width="match_parent"></fragment>
</RelativeLayout>
фрагмент1 не отображается на экране и отсутствует в средстве просмотра иерархии, но имеет экземпляр в коде, в котором все еще есть вызовы onCreate runв теме.Фрагмент 2 появляется и занимает весь экран.Что может быть причиной его исчезновения?