FragmentTabHost を構築し、水平スクロール可能にしようとしています。解決策を探していましたが、何も見つかりませんでした。すべての投稿は通常の TabHost に関するものです。
FragmentTabHostの Android サイトで説明されているように、サポート ライブラリを使用しています。
私のレイアウトは次のとおりです。
<android.support.v4.app.FragmentTabHost xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost"
android:tag="trip_entry_tab"
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:layout_width="fill_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>
<FrameLayout
android:id="@+id/realtabcontent"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>
</LinearLayout>
すでに tabwidget を水平スクロール ビューにネストしようとしました (これは他の投稿で見つけることができる解決策ですが、FragmentTabHost ではなく常に TabHost に対して)、何も変わりません:
<HorizontalScrollView
android:layout_width="fill_parent"
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" >
</TabWidget>
</HorizontalScrollView>
タブが縮小されてしまい、見栄えがよくありません。フラグメントタブのホストをスクロール可能にするために誰かが作ったことがありますか?
ありがとう