我制作了两个XML文件,一个用于纵向模式,另一个用于横向
当我启动应用程序时,它会正常运行,并在第二次翻转屏幕后崩溃并发出此错误:java.lang.IllegalStateException: Fragment has not been attached yet
。
尽管横向xml文件包含静态片段,但portriat却没有任何内容(为了在进一步的步骤中添加片段)。这是我的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">
<fragment
android:name="com.example.alihaidar.fragmentlab.fragList"
android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="match_parent"
android:id="@+id/frag_list"
/>
<fragment
android:name="com.example.alihaidar.fragmentlab.fragContent"
android:layout_width="0dp"
android:layout_weight="2"
android:layout_height="match_parent"
android:id="@+id/frag_content"
/>
</LinearLayout>
这是mainActivity它什么都不包含:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}