我正在开发一个Android应用程序,它实现了tabhost,viewpager,以及底部的顶部滑动抽屉和标签。该应用程序使用android-support-v4 FragmentPagerAdapter,它可以在v4-support-package的示例中找到。参考资料可以在这里找到:
http://developer.android.com/reference/android/support/v4/app/FragmentPagerAdapter.html
我似乎无法让Sliding Drawer和TabHost同时出现在屏幕上。
这是我的布局。 com.mobicartel ...块是一个定制的滑动抽屉。 -------------------------------------------------- -----------------------------------------
<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的内容。相反,标签监听器&amp; viewpager监听器相互控制,因此它们是同步的。 ViewPager由特殊适配器填充片段。
有什么想法吗?
有人
答案 0 :(得分:1)
我从未在底部使用TabHost标签,因为建议不要(在官方设计指南中),但是,您似乎正在使用此处找到的黑客:https://stackoverflow.com/a/2710404/377260。< / p>
我注意到你的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"/>
在答案中找到。