I am making a small program in which I use tabs with fragments to make it stylish, I used Style Generator and my experience was good with that.
Now I want to slightly change the existing look of my tabs, this time I'm talking about the tab style .
first screen shot of my simple stylish ActionBar

, , , , , ( , : - IOS WINDOWS)
styles.xml:
<resources>
<style name="Theme.Compatstyle4" parent="@style/Theme.AppCompat.Light.DarkActionBar">
<item name="actionBarItemBackground">@drawable/selectable_background_compatstyle4</item>
<item name="popupMenuStyle">@style/PopupMenu.Compatstyle4</item>
<item name="dropDownListViewStyle">@style/DropDownListView.Compatstyle4</item>
<item name="actionBarTabStyle">@style/ActionBarTabStyle.Compatstyle4</item>
<item name="actionDropDownStyle">@style/DropDownNav.Compatstyle4</item>
<item name="actionBarStyle">@style/ActionBar.Solid.Compatstyle4</item>
<item name="actionModeBackground">@drawable/cab_background_top_compatstyle4</item>
<item name="actionModeSplitBackground">@drawable/cab_background_bottom_compatstyle4</item>
<item name="actionModeCloseButtonStyle">@style/ActionButton.CloseMode.Compatstyle4</item>
<item name="actionBarWidgetTheme">@style/Theme.Compatstyle4.Widget</item>
</style>
<style name="ActionBar.Solid.Compatstyle4" parent="@style/Widget.AppCompat.Light.ActionBar.Solid.Inverse">
<item name="background">@drawable/ab_solid_compatstyle4</item>
<item name="backgroundStacked">@drawable/ab_stacked_solid_compatstyle4</item>
<item name="backgroundSplit">@drawable/ab_bottom_solid_compatstyle4</item>
<item name="progressBarStyle">@style/ProgressBar.Compatstyle4</item>
</style>
<style name="ActionBar.Transparent.Compatstyle4" parent="@style/Widget.AppCompat.ActionBar">
<item name="background">@drawable/ab_transparent_compatstyle4</item>
<item name="progressBarStyle">@style/ProgressBar.Compatstyle4</item>
</style>
<style name="PopupMenu.Compatstyle4" parent="@style/Widget.AppCompat.PopupMenu">
<item name="android:popupBackground">@drawable/menu_dropdown_panel_compatstyle4</item>
</style>
<style name="DropDownListView.Compatstyle4" parent="@style/Widget.AppCompat.ListView.DropDown">
<item name="android:listSelector">@drawable/selectable_background_compatstyle4</item>
</style>
<style name="ActionBarTabStyle.Compatstyle4" parent="@style/Widget.AppCompat.ActionBar.TabView">
<item name="android:background">@drawable/tab_indicator_ab_compatstyle4</item>
</style>
<style name="DropDownNav.Compatstyle4" parent="@style/Widget.AppCompat.Spinner.DropDown.ActionBar">
<item name="android:background">@drawable/spinner_background_ab_compatstyle4</item>
<item name="android:popupBackground">@drawable/menu_dropdown_panel_compatstyle4</item>
<item name="android:dropDownSelector">@drawable/selectable_background_compatstyle4</item>
</style>
<style name="ProgressBar.Compatstyle4" parent="@style/Widget.AppCompat.ProgressBar.Horizontal">
<item name="android:progressDrawable">@drawable/progress_horizontal_compatstyle4</item>
</style>
<style name="ActionButton.CloseMode.Compatstyle4" parent="@style/Widget.AppCompat.ActionButton.CloseMode">
<item name="android:background">@drawable/btn_cab_done_compatstyle4</item>
</style>
<style name="Theme.Compatstyle4.Widget" parent="@style/Theme.AppCompat">
<item name="popupMenuStyle">@style/PopupMenu.Compatstyle4</item>
<item name="dropDownListViewStyle">@style/DropDownListView.Compatstyle4</item>
</style>
</resources>
: