如何处理此运行时异常

时间:2013-08-04 12:17:39

标签: java android android-fragments android-listfragment runtimeexception

在我的应用程序中我想做以下事情:我想将一个列表视图放在一个片段中,当我点击任何项目时,它应该将我移动到其他片段,这个片段是相同的,因为我想阅读这些片段对于每个项目,并将其显示在其他称为细节片段的片段中,我在互联网上看到这个例子,我一步一步地做,但在运行时我有一个例外,请告诉我为什么会发生此异常 我有4个类,关于xml文件我有2个第一个名字layout-land使用此代码:

    <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:orientation="horizontal"
        android:layout_width="match_parent" android:layout_height="match_parent">

        <fragment class="com.example.android.apis.app.FragmentLayout$TitlesFragment"
                android:id="@+id/titles" android:layout_weight="1"
                android:layout_width="0px" android:layout_height="match_parent" />

        <FrameLayout android:id="@+id/details" android:layout_weight="1"
                android:layout_width="0px" android:layout_height="match_parent"
                />

    </LinearLayout> 

使用此布局,系统会在活动加载布局时实例化TitlesFragment(列出播放标题),而FrameLayout(用于显示播放摘要的片段将在其中)会消耗右侧的空间屏幕,但最初仍然是空的。正如您将在下面看到的那样,直到用户从列表中选择一个项目将片段放入FrameLayout中。

但是,并非所有屏幕配置都足够宽,以便并排显示播放列表和摘要。因此,上面的布局仅用于横向屏幕配置,方法是将其保存在res / layout-land / fragment_layout.xml中。

因此,当屏幕处于纵向时,系统将应用以下布局,该布局保存在res / layout / fragment_layout.xml中:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:android1="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<fragment class="com.example.android.apis.app.FragmentLayout$TitlesFragment"
        android:id="@+id/titles"
        android:layout_width="match_parent" android:layout_height="match_parent" />

<ListView
    android1:id="@+id/listView1"
    android1:layout_width="match_parent"
    android1:layout_height="wrap_content" >
</ListView>

我有这个运行时异常:

            08-04 11:59:52.127: E/AndroidRuntime(1124): FATAL EXCEPTION: main
            08-04 11:59:52.127: E/AndroidRuntime(1124): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.list_fragment/com.example.list_fragment.MainActivity}: android.view.InflateException: Binary XML file line #6: Error inflating class fragment
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2180)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2230)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at android.app.ActivityThread.access$600(ActivityThread.java:141)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1234)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at android.os.Handler.dispatchMessage(Handler.java:99)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at android.os.Looper.loop(Looper.java:137)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at android.app.ActivityThread.main(ActivityThread.java:5039)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at java.lang.reflect.Method.invokeNative(Native Method)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at java.lang.reflect.Method.invoke(Method.java:511)
            08-04 11:59:52.127: E/AndroidRuntime(1124):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)

0 个答案:

没有答案