如何在tabHost布局上方添加按钮

时间:2011-12-05 07:10:38

标签: android button android-tabhost

所以我想要做的就是在tabhost布局上面添加一个按钮......任何人都可以帮助我吗?我已经尝试了几个方面,比如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 个答案:

答案 0 :(得分:2)

我遇到了同样的问题,我可以通过使用以下代码来解决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>