我在我的 MainActivity 中放置了两个 ListFragment。
这是 ListFragment xml 文件:fragment1.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="vertical" >
<ListView
android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="1"
android:drawSelectorOnTop="false" />
</LinearLayout>
我的问题是,为什么我必须在这里使用 android:id="@id/android:list" ?例如,当我使用@+id/frag_list 时,程序会因错误“inflating class fragment”而崩溃。