blob: b79ec5d9e6712897c8250d1493f476410f5fa2c0 [file] [log] [blame]
Brian Attwellc8a6a4b2014-05-16 12:49:15 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2013 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
Alan Viverette610ddca2014-05-19 16:49:59 -070017<ripple xmlns:android="http://schemas.android.com/apk/res/android"
Brian Attwellc8a6a4b2014-05-16 12:49:15 -070018 android:tint="@color/tab_pressed_color">
19 <item>
20 <selector>
21 <item android:drawable="@drawable/tab_selected"
22 android:state_focused="false"
23 android:state_pressed="false"
24 android:state_selected="true" />
25 <item android:drawable="@drawable/tab_selected_focused"
26 android:state_focused="true"
27 android:state_pressed="false"
28 android:state_selected="true" />
29 <item android:drawable="@drawable/tab_unselected_focused"
30 android:state_focused="true"
31 android:state_pressed="false"
32 android:state_selected="false" />
33 <item android:drawable="@drawable/tab_selected"
34 android:state_selected="true" />
35 <item android:drawable="@color/tab_default_color" />
36 </selector>
37 </item>
Alan Viverette610ddca2014-05-19 16:49:59 -070038</ripple>