gpt4 book ai didi

android - 底部的选项卡,顶部的 map View

转载 作者:行者123 更新时间:2023-11-29 16:18:27 24 4
gpt4 key购买 nike

嘿那里的人..

我正在制作一个带有 tabview 的应用程序,其中一个选项卡中嵌入了 mapview。但是我希望 tabview 位于底部而不是顶部,当我将 gravity 或 layout_marginBottom 设置为 true 时,它​​会消失,并且在屏幕上不再可见。

这是选项卡 View Activity 的 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>

有什么想法可以让选项卡位于底部并仍然可见吗??

最佳答案

<?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"
android:background="@android:color/white">

<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp" />

<TabWidget
android:id="@android:id/tabs"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true" />
</RelativeLayout>

</TabHost>

这对我有用。将 tabcontent FrameLayout 放在 TabWidget 上方。请试用并告诉我。

关于android - 底部的选项卡,顶部的 map View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8410022/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com