android布局中底部的tab标签被listView覆盖的解决办法

只要修改布局文件中frameLayout和tabWidget的位置

<?xml version="1.0" encoding="utf-8"?>

<TabHost 

    android:id="@android :id/tabhost" 

    android:layout_width="fill_parent"

android:layout_height="fill_parent" 

xmlns:android="http://schemas.android.com/apk/res/android"

android:background="@drawable/background">

<RelativeLayout

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="fill_parent"

>

<FrameLayout

            android:id="@android :id/tabcontent"

            android:layout_width="fill_parent"

            android:layout_height="wrap_content"/>

<TabWidget 

   android:id="@android :id/tabs"

android:layout_width="fill_parent" 

android:layout_height="wrap_content"

android:layout_alignParentBottom="true">

   

</TabWidget>

</RelativeLayout>

</TabHost>



你可能感兴趣的:(android布局中底部的tab标签被listView覆盖的解决办法)