Как добавить кнопку над вкладкойHost layout - PullRequest
0 голосов
/ 05 декабря 2011

Итак, все, что я хочу сделать, - это добавить кнопку над макетом таб-хоста.Я пробовал несколько вещей, таких как align_bottom, переключение просмотров ... ничего не получалось.Если мне нужно опубликовать код, где я звоню в xml, дайте мне знать.Вот мой код xml:

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

        <Button
            android:id="@+id/button1"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:text="Button" />

        <TabHost
            android:id="@android:id/tabhost"
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
             >
             <TabWidget 
                 android:id="@android:id/tabs"
                 android:layout_width="fill_parent"
                 android:layout_height="fill_parent"></TabWidget>


    <FrameLayout 
        android:id="@android:id/tabcontent"
        android:background="#ffffff"
        android:layout_width="match_parent"
        android:layout_height="match_parent"></FrameLayout>             

    <TextView
        android:id="@+id/view1"
        android:layout_width="match_parent"
        android:layout_height="439dp" ></TextView>



    <TextView
        android:id="@+id/view2"
        android:layout_width="match_parent"
        android:layout_height="344dp" ></TextView>



    <TextView
        android:id="@+id/view3"
        android:layout_width="314dp"
        android:layout_height="match_parent" ></TextView>
    </TabHost>    
    </LinearLayout>

1 Ответ

2 голосов
/ 05 декабря 2011

У меня была та же проблема, которую я мог решить, используя приведенный ниже код для 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:orientation="vertical"
              android:layout_width="fill_parent" 
                  android:layout_height="wrap_content"
              android:padding="5dp">        
        <Button
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:id="@+id/button"
            android:text="Button"
        />  
        <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="wrap_content"
                 android:padding="5dp" />       
    </LinearLayout> 

</TabHost>
...