我是Android编程的初学者。我正在尝试使用android studio中的内置片段。我只是尝试在主要内容部分编辑.xml并尝试运行该程序,但它在模拟器中崩溃。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.example.danger.fragmentss.MainActivity"
tools:showIn="@layout/activity_main"
android:weightSum="1">
<fragment
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/f1"
android:layout_weight="3.14"
android:name="com.example.danger.fragmentss.BlankFragment"></fragment>
<fragment
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:name="com.example.danger.fragmentss.BlankFragment2"
android:id="@+id/f2"></fragment>
</LinearLayout>
只有我这样做并且崩溃了