Search code examples
androiduser-interface

Remove the bottom line border in tab bar? (And change selected color)


Is it possible to remove the bottom line showed in the tab bar? It is grey when not selected.

And is it possible to change the yellowish color to something else?

alt text

layout xml: http://pastebin.com/M2KqtH1r


Solution

  • In AndroidManifest.xml:

     <activity android:name=".ActivityName" android:theme="@style/tabTheme"/> 
    

    In values/styles.xml:

     <style name="tabTheme" parent="android:style/Theme"> 
          <item name="android:tabWidgetStyle">@style/Widget.TabWidget</item>
     </style> 
    
     <style name="Widget.TabWidget" parent="android:Theme"> 
          <item name="android:tabStripEnabled">false</item>
     </style>