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?
I want to have something like this:
+3
Erfan egtfi
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
Andy joyce
source
to share