2013-04-22 72 views
1

我使用FragmentTabsPager作爲標籤尋呼機。我只是刪除行setTheme(SampleList.THEME);但我有一個主題問題(選項卡高度和背景顏色)。是因爲SampleList.THEMEActionBarSherlock選項卡尋呼機主題問題

enter image description here

XML:

<TabHost 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    android:id="@android:id/tabhost" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent"> 

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

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

     <FrameLayout 
      android:id="@android:id/tabcontent" 
      android:layout_width="0dp" 
      android:layout_height="0dp" 
      android:layout_weight="0"/> 

     <android.support.v4.view.ViewPager 
      android:id="@+id/pager" 
      android:layout_width="match_parent" 
      android:layout_height="0dp" 
      android:layout_weight="1"/> 

    </LinearLayout> 
</TabHost> 

回答

0

設定目標SDK版本

<uses-sdk 
    android:minSdkVersion="4" 
    android:targetSdkVersion="10" />