gpt4 book ai didi

android - 是否可以有一个两级操作栏?

转载 作者:行者123 更新时间:2023-11-30 04:17:38 26 4
gpt4 key购买 nike

我正在开发一个 Android 应用程序,它在底部实现了一个 tabhost、viewpager 和一个顶部滑动抽屉和选项卡。该应用程序使用 android-support-v4 FragmentPagerAdapter,可以在 v4-support-package 的示例中找到它。可以在这里找到引用:
http://developer.android.com/reference/android/support/v4/app/FragmentPagerAdapter.html

我似乎无法让滑动抽屉和 TabHost 同时出现在屏幕上。

这是我的布局。 com.mobicartel... block 是一个自定义的滑动抽屉。 ---------------------------------------------- ----------------------------------------

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:my="http://schemas.android.com/apk/res/com.mobicartel.tabsandpager"
android:id="@+id/activity_main"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<com.mobicartel.tabsandpager.slidingdrawer.MultiDirectionSlidingDrawer
xmlns:my="http://schemas.android.com/apk/res/com.mobicartel.tabsandpager"
android:id="@+id/drawer"
my:direction="topToBottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"
my:handle="@+id/handle"
my:content="@+id/content">
<include
android:id="@id/content"
layout="@layout/pen_content" />
<ImageButton
android:id="@id/handle"
android:layout_width="wrap_content"
android:layout_height="40px"
android:src="@drawable/sliding_drawer_handle_bottom" />
</com.mobicartel.tabsandpager.slidingdrawer.MultiDirectionSlidingDrawer>

<FrameLayout
android:id="@+id/tab_host_container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/drawer">

<TabHost
android:id="@android:id/tabhost"
android:layout_width="match_parent"
android:layout_height="match_parent">

<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<android.support.v4.view.ViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"/>

<FrameLayout
android:id="@android:id/tabcontent"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_weight="0"/>

<TabWidget
android:id="@android:id/tabs"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="0"
android:layout_marginBottom="-4dip"/>

</LinearLayout>

</TabHost>
</FrameLayout>

实际上并没有显示 TabHost 的内容。相反,选项卡监听器和 viewpager 监听器相互控制,因此它们是同步的。 ViewPager 由特殊适配器填充 fragment 。

有什么想法吗?

有人吗

最佳答案

我从来没有在底部使用带有选项卡的 TabHost,因为建议不要这样做(在官方设计指南中),但是,您似乎正在使用此处找到的 hack:https://stackoverflow.com/a/2710404/377260 .

我注意到您的 FrameLayout 重量以及高度和宽度为 0。尝试将它们设置为:

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

在链接到的答案中找到。

关于android - 是否可以有一个两级操作栏?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9741021/

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