嘿,外面的人。。
我正在制作一个带有 tabview 的应用程序,其中一个选项卡中嵌入了 mapview。但是我希望 tabview 位于底部而不是顶部,当我将重力或 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>
任何想法如何将标签置于底部并且仍然可见?