タブベースのAndroidアプリケーションを開発していますが、「TabActivity」クラスが非推奨になり、代わりにFragmentを使用して同じことを実現しました。次のリンクを使用してアプリケーションを開発しました。次に、タブバーを表示する必要があります。一番下に、私はいくつかの方法を試しましたが、それを正しく動作させることができませんでした、
http://thepseudocoder.wordpress.com/2011/10/04/android-tabs-the-fragment-way/
誰かがこれについて私を助けることができますか、私のタブレイアウトxml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
/>
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>
<FrameLayout
android:id="@+android:id/realtabcontent"
android:layout_width="fill_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
</TabHost>
</LinearLayout>