我一直按照此页面中的示例(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>
如您所见,我正在尝试在选项卡上为另一个 Fragment 充气。我想这是我的问题。
任何人都可以帮助我吗?
谢谢!