横向和纵向的不同布局之间的方向更改似乎很容易,但是我找不到适合我当前情况的解决方案。
我想在横向模式下使用带有两个片段的双窗格布局
res\layout-land\dashboard_activity.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<fragment class="xxx.DashboardFragment"
android:id="@+id/master_frag"
android:layout_width="@dimen/timeline_size"
android:layout_height="match_parent"/>
<fragment class="xxx.TaskInstanceFragment"
android:id="@+id/details_frag"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
以及纵向模式下的单窗格布局
res\layout\dashboard_activity.xml
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<fragment class="xxx.DashboardFragment"
android:id="@+id/master_frag"
android:layout_width="match_parent"
android:layout_height="match_parent"
/>
</FrameLayout>
我想指出 DashboardFragment 由 ViewPager 组成。不知道是否重要。
现在,当我将方向从横向(双)更改为纵向(单)时,应用程序崩溃,因为它想要更新details_frag
. 当我以纵向开始活动时,它可以工作,只有从横向切换到纵向才会出现问题。
在活动中有以下代码:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.dashboard_activity);
Fragment frag = getSupportFragmentManager().findFragmentById(R.id.details_frag);
mDualFragments = frag != null;
/* .. */
}
现在,FragmentManager
当我切换到纵向模式时,仍然会找到详细信息片段,因此mDualFragments
仍然为真但应该为假,这导致稍后调用详细信息片段中的方法。
那么,这是为什么呢?:)
问候, Konsumierer