我有两种不同的纵向和横向模式布局:
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");
}
}
当我以纵向方式启动程序时,按下按钮&#34;一个窗格&#34;在logcat上打印。
但是,当我旋转到横向并立即旋转到纵向,然后按下按钮&#34;两个窗格&#34;用logcat打印。为什么会这样?