Improve Android Tabbed Action Bar

I am using this link to create a custom tab in android. Now my problem is how to remove the dark horizontal line in the center?

enter image description here

I want to have something like this:

enter image description here

+3


source to share


1 answer


In your styles.xml, in the main theme of your application, set the windowContentOverlay to null Something like the code below.

<style name="MyAppTheme" parent="android:Theme.Holo.Light">
<item name="android:windowContentOverlay">@null</item>

      



+1


source







All Articles