0

これは少し奇妙なことですが、我慢してください。

TabHostを拡張し、XMLを拡張するカスタムビューがあります。それはいくつかのビューを含み、それは下に配置され、すべてがうまく機能します。

問題は、TabHostを別のアクティビティに配置したときに、TabHostビューを表示したくない場合です。アクティビティレイアウトの上にあるTabHostタブのみ。基本的に、TabHostを無効なボトムバーとして表示したいと思います。

これがTabHostXMLです(カスタムビューの1つを切り替える限り、これはうまく機能し、下に配置されます):

<?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(タブホストビューを表示したくない、タブホストボタンを下に揃えるだけのXML)は次のとおりです。

<?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 に答える