对于纵向和横向模式,我有 2 种不同的布局:
layout\activity_main.xml
:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<FrameLayout android:id="@+id/container"
android:layout_height="match_parent"
android:layout_width="match_parent"/>
</RelativeLayout>
并且layout-land\activity_main.xml
:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<fragment
android:id="@+id/fragment1"
android:name="com.example.fragmentorientationchangetest.Fragment1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
<fragment
android:id="@+id/fragment2"
android:name="com.example.fragmentorientationchangetest.Fragment2"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" />
</LinearLayout>
我在 onCreate 中添加 Fragment1:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (findViewById(R.id.container) != null) {
if (savedInstanceState != null) {
return;
}
Fragment1 fragment1 = new Fragment1();
getFragmentManager().beginTransaction()
.add(R.id.container, fragment1, "tag1").commit();
}
}
在 Fragment1 中有一个按钮,当按下该按钮时,将向 Activity 发送回调。这是 MainActivity 中的回调:
@Override
public void OnButtonClick() {
if (getFragmentManager().findFragmentById(R.id.fragment2) == null) {
Log.d("mytag", "one pane");
}else{
Log.d("mytag", "two pane");
}
}
当我纵向启动程序并按下按钮时,logcat 上会打印“一个窗格”。
但是当我旋转到横向并立即旋转到纵向然后按下按钮“两个窗格”打印在 logcat 中。为什么会发生这种情况?