Android 4.0 を使用してタブレット用のサンプル アプリケーションを開発しています。このアプリケーションには、タイトル バー/アクション バーがなく、フル スクリーン モードがあります。
このアプリでは、Tabwidgets を使用し、下部にタブを設定しました。すべてがうまくいっています。今、私はタブストリップで次のことをしたい:
- タブから下部タブストリップを取り外します
- タブの上部にタブストリップを追加します (上方向)
- 上部のタブ ストリップにドローアブル (小さなインジケーター) を設定したい
- このドローアブルに、最後に選択したタブから現在のタブへの移動効果をスムーズに追加したい。
私のmain.xmlは次のとおりです。
<TabHost
android:id="@android:id/tabhost"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" />
<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="0"/>
</LinearLayout>
</TabHost>
現在のタブは次のようになります。
しかし、私は自分のタブを次のように見たいと思っています:
私は多くのことを試しましたが、適切な解決策が得られませんでした。私を案内してください。