2013-03-26 81 views
3

我没有一个Android的布局文件activity_item_list.xml,其内容如下列表:如何<include>带有片段标签的布局文件?

<fragment xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/item_list" 
    android:name="xxx.xxx.xxx.ItemListFragment" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_marginLeft="16dp" 
    android:layout_marginRight="16dp" 
    tools:context=".ItemListActivity" 
    tools:layout="@android:layout/list_content" /> 

那么,它会崩溃。崩溃日志低于:

android.view.InflateException: Binary XML file line #1: Error inflating class <unknown> 

我将列出这里所有的步骤:

  1. 在Eclipse中,通过向导并选择主/新项目流

  2. 向导结束后,我获得了4个由向导生成的布局xmls:activity_item_detail.xml,activity_item_twopane.xml,activity_item_list.xml和fragment_item_detail.xml

  3. 让我们修改activity_item_twopane.xml。我想重新使用一些布局。

的一部开拓创新activity_item_twopane.xml:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_marginLeft="16dp" 
    android:layout_marginRight="16dp" 
    android:baselineAligned="false" 
    android:divider="?android:attr/dividerHorizontal" 
    android:orientation="horizontal" 
    android:showDividers="middle" 
    tools:context=".ItemListActivity" > 

    <fragment 
     android:id="@+id/item_list" 
     android:name="xxx.xxx.xxx.ItemListFragment" 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="1" 
     tools:layout="@android:layout/list_content" /> 

    <FrameLayout 
     android:id="@+id/item_detail_container" 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="3" /> 
</LinearLayout> 

修改后的文件:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:layout_marginLeft="16dp" 
    android:layout_marginRight="16dp" 
    android:baselineAligned="false" 
    android:divider="?android:attr/dividerHorizontal" 
    android:orientation="horizontal" 
    android:showDividers="middle" 
    tools:context=".ItemListActivity" > 

    <include 
     layout="@layout/activity_item_list" 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="1" /> 

    <include 
     layout="@layout/activity_item_detail" 
     android:layout_width="0dp" 
     android:layout_height="match_parent" 
     android:layout_weight="3"/> 
</LinearLayout> 

现在,第二个包括块效果很好。但第一个会导致崩溃。

activity_item_detail.xml

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:id="@+id/item_detail_container" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    tools:context=".ItemDetailActivity" 
    tools:ignore="MergeRootFrame" /> 

而且我试过如下修改activity_item_list.xml,还是死机....

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

    <fragment 
     android:id="@+id/item_list" 
     android:name="xxx.xxx.xxx.ItemListFragment" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_marginLeft="16dp" 
     android:layout_marginRight="16dp" 
     tools:context=".ItemListActivity" 
     tools:layout="@android:layout/list_content" /> 

</FrameLayout> 

我不知道为什么机器人不能支持一个片段。谁可以告诉我。谢谢!

+0

以及如何在您的布局使用它吗? – waqaslam 2013-03-26 08:28:35

+0

请看我的新帖子。谢谢! – paranoia 2013-03-26 09:26:42

+0

你也可以粘贴xml for activity_item_detail吗? – waqaslam 2013-03-26 09:30:54

回答

1

请问您能否提供更多上下文,比如您是否尝试自行膨胀片段?如果是这样,就我所知,它不会工作。它必须嵌入到另一个布局中。 你可以用它来了解更多关于使用片段: http://developer.android.com/guide/components/fragments.html

希望它可以帮助

+0

我刚刚编辑了我原来的帖子。谢谢! – paranoia 2013-03-26 09:07:12

+0

你已经写了第一个文件的名字是“activity_item_detial.xml”。这里有一个拼写错误:应该是'detail'而不是'detial'。如果它在你的实际代码中是一样的,它将不会运行。请让我知道,如果它修好了 – Egis 2013-03-27 19:14:36

+0

好,这是我的文章中的一个错字。抱歉。不在代码中......实际上,文件名是由向导生成的,我从来没有改变过。 – paranoia 2013-03-29 01:28:36