0

我知道这有点奇怪,但请耐心等待。

我有一个自定义视图,它扩展了 TabHost 并扩展了 XML。它包括几个视图,它与底部对齐,一切都很好。

问题是当我将 TabHost 放在不同的活动中时,我不想看到任何 TabHost 视图。只有活动布局顶部的 TabHost 选项卡。基本上,我希望 TabHost 作为禁用的底栏存在。

这是 TabHost XML(效果很好并且与底部对齐,只要我在其中一个自定义视图之间切换):

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/tabhost"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

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

        <FrameLayout
            android:id="@android:id/tabcontent"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_weight="1"
             >

            <CustomView#1
                android:id="@+id/tab_watch_me"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

            <CustomView#2
                android:id="@+id/tab_messages"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

            <CustomView#3
                android:id="@+id/tab_search_results"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

            <CustomView#4
                android:id="@+id/tab_my_profile"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />

            <CustomView#5
                android:id="@+id/tab_user_profile"
                android:layout_width="match_parent"
                android:layout_height="match_parent" />
         </FrameLayout>

        <TabWidget
            android:id="@android:id/tabs"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_weight="0" />
    </LinearLayout>

</TabHost>

这是活动 XML(我不希望显示 tabhost 视图,只是为了将 tabhost 按钮与底部对齐):

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <customview.HeaderView
        android:id="@+id/header_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

**//Notice that I don't want to show any of the customViews the tabhost hold. only the tabhost tabs/buttons**

    <customview.MyTabHost
        android:id="@+id/settings_tabhost"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

如果您需要更多代码以提供帮助,请告诉我!

谢谢!

4

1 回答 1

0

我的 RelativeLayout 解决方案以防万一这对任何人都有帮助。如果有人必须提供,我仍在寻找更好的解决方案。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <customview.HeaderView
        android:id="@+id/header_view"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentTop="true" />

<Any other view
android:layout_below="@+id/header_view"
/>

    <customview.MyTabHost
        android:id="@+id/settings_tabhost"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_alignParentBottom="true" />

</RelativeLayout>
于 2012-07-31T18:42:13.120 回答