summaryrefslogtreecommitdiffstats
path: root/res/drawable/tab_selected.xml
diff options
context:
space:
mode:
Diffstat (limited to 'res/drawable/tab_selected.xml')
-rw-r--r--res/drawable/tab_selected.xml20
1 files changed, 14 insertions, 6 deletions
diff --git a/res/drawable/tab_selected.xml b/res/drawable/tab_selected.xml
index 25d76fc27..821f0473f 100644
--- a/res/drawable/tab_selected.xml
+++ b/res/drawable/tab_selected.xml
@@ -14,18 +14,26 @@
See the License for the specific language governing permissions and
limitations under the License.
-->
-
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >
-
+ <!-- Tab underline -->
<item>
+ <shape android:shape="rectangle">
+ <solid android:color="@color/tab_underline_selected_color"/>
+ </shape>
+ </item>
+ <!-- Tab selection indicator -->
+ <item android:bottom="@dimen/tab_underline_height">
<shape android:shape="rectangle" >
- <solid android:color="#7d7d7d" />
+ <solid android:color="@color/tab_selected_color" />
</shape>
</item>
- <item android:bottom="6dp">
+ <!-- Tab background -->
+ <item android:bottom="@dimen/tab_selection_height">
<shape android:shape="rectangle" >
- <solid android:color="@color/actionbar_background_color" />
+ <gradient
+ android:startColor="@color/tab_background_gradient_start_color"
+ android:endColor="@color/tab_background_gradient_end_color"
+ android:angle="270" />
</shape>
</item>
-
</layer-list> \ No newline at end of file