blob: 5978858033527cbe13c0f3123d63ea85137f4933 [file] [log] [blame]
Andrew Lee9329f6b2014-05-01 16:52:01 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 ~ Copyright (C) 2014 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 -->
17
18<!-- Background resource for "compound buttons" in the in-call UI.
19 These buttons have two states (checked and unchecked), and
20 show a blue bar along the bottom edge when checked. -->
Alan Viverettec5ff8902014-05-19 16:32:43 -070021<ripple xmlns:android="http://schemas.android.com/apk/res/android"
Alan Viverette5e3e1322014-06-09 17:47:05 -070022 android:color="@color/incall_accent_color">
Andrew Lee1caba012014-05-09 13:40:26 -070023 <item>
Andrew Lee5a0df352014-05-09 18:17:47 -070024 <selector>
Andrew Lee9329f6b2014-05-01 16:52:01 -070025
Andrew Lee1caba012014-05-09 13:40:26 -070026 <item android:state_focused="true"
27 android:drawable="@drawable/btn_unselected_focused" />
Andrew Lee9329f6b2014-05-01 16:52:01 -070028
Andrew Lee1caba012014-05-09 13:40:26 -070029 <item android:drawable="@drawable/btn_unselected" />
Andrew Lee70bab102014-05-07 11:29:41 -070030
Andrew Lee1caba012014-05-09 13:40:26 -070031 </selector>
32 </item>
Alan Viverettec5ff8902014-05-19 16:32:43 -070033</ripple>