无法从使用FragmentActivity创建的选项卡中填充片段

时间:2013-04-06 17:42:24

标签: android android-layout android-fragmentactivity android-tabs

我一直在关注此页面中的示例(http://android-er.blogspot.in/2012/06/create-actionbar-in-tab-navigation-mode.html),以便在我的应用程序中创建3个标签。

目前我已经运行了,但是当我尝试修改选项卡上显示的信息时(通过修改xml文件),我的应用程序崩溃了。

我想这是因为我试图从选项卡中调用另一个片段,正如您在此处所看到的(假设这是示例中的/res/layout/fragment_a.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" >

<!-- Screen Design for today -->

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:padding="15dip"
        android:text="Today HERE"
        android:textSize="18dip" />

</RelativeLayout>

<RelativeLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
     >

    <fragment
        android:id="@+id/fragment1"
        android:name="com.myfont.mandi.main.MyInfoBar"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

</RelativeLayout>

</LinearLayout>

正如您所看到的,我正在尝试在标签上充气另一个片段。我想这是我的问题。

任何人都可以帮助我吗?

谢谢!

0 个答案:

没有答案