ねえ、そこにいる人たち..
タブの1つにマップビューが埋め込まれているタブビューを使用したアプリケーションの作成に取り組んでいます。しかし、タブビューを上ではなく下に配置したいのですが、gravity または layout_marginBottom を true に設定すると、消えて画面に表示されなくなります。
タブ ビュー アクティビティの xml ファイルは次のとおりです。
<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<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="fill_parent"
android:layout_height="fill_parent" >
<RelativeLayout
android:id="@+id/emptylayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" />
</FrameLayout>
</LinearLayout>
</TabHost>
タブを一番下にしてまだ表示する方法はありますか??