このページ ( 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 をインフレートしようとしています。これは私の問題だと思います。
誰でも私を助けることができますか?
ありがとう!