0

多くのフラグメントを使用するアプリを作成しています。ActionBarSherlock (ActionBar 付き) を使用しました。バグ # 240を回避するために、機能的に動作する実装を切り替えて、TabHostで ActionBarSherlock を使用することにしました。30 時間ほど作業した後、ページ間をスワイプしているときを除いて、正常に動作しています

ここに画像の説明を入力

画像では、目に見えるフラグメント ("WEEKLY S..") を見ることができますが、タブは半分しか表示されていません。次のスワイプでは、「WEEKLY S...」が「CALENDAR EVENTS」のように見えるだけで、TabWidget を手動でスワイプしない限り、どのタブが選択されているかわかりません。

ここに私の activity_main.xml があります:

<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    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">

        <HorizontalScrollView 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:fillViewport="true"
            android:scrollbars="none" >

            <TabWidget
                android:id="@android:id/tabs"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:tabStripEnabled="true"
                android:orientation="horizontal" />

        </HorizontalScrollView>

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="fill_parent"
            android:layout_height="0dp"
            android:layout_weight="0"/>

        <android.support.v4.view.ViewPager
            android:id="@+id/pager"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"/>

    </LinearLayout>

</TabHost>

私の TabsAdapter は、Jake WhartonのFragmentTabsPagerの例と同じです。

どんな提案も大歓迎です!

4

2 に答える 2