1<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright 2018 The Android Open Source Project
3
4     Licensed under the Apache License, Version 2.0 (the "License");
5     you may not use this file except in compliance with the License.
6     You may obtain a copy of the License at
7
8          http://www.apache.org/licenses/LICENSE-2.0
9
10     Unless required by applicable law or agreed to in writing, software
11     distributed under the License is distributed on an "AS IS" BASIS,
12     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13     See the License for the specific language governing permissions and
14     limitations under the License.
15-->
16
17<resources>
18    <declare-styleable name="MediaRouteButton">
19        <!-- This drawable is a state list where the "checked" state
20             indicates active media routing.  Checkable indicates connecting
21             and non-checked / non-checkable indicates
22             that media is playing to the local device only. -->
23        <attr name="externalRouteEnabledDrawable" format="reference" />
24        <!-- Tint to apply to the media route button -->
25        <attr name="mediaRouteButtonTint" format="color" />
26
27        <attr name="android:minWidth" />
28        <attr name="android:minHeight" />
29    </declare-styleable>
30
31    <attr name="mediaRouteButtonStyle" format="reference" />
32    <attr name="mediaRouteCloseDrawable" format="reference" />
33    <attr name="mediaRoutePlayDrawable" format="reference" />
34    <attr name="mediaRoutePauseDrawable" format="reference" />
35    <attr name="mediaRouteStopDrawable" format="reference" />
36    <attr name="mediaRouteAudioTrackDrawable" format="reference" />
37    <attr name="mediaRouteDefaultIconDrawable" format="reference" />
38    <attr name="mediaRouteTvIconDrawable" format="reference" />
39    <attr name="mediaRouteSpeakerIconDrawable" format="reference" />
40    <attr name="mediaRouteSpeakerGroupIconDrawable" format="reference" />
41    <attr name="mediaRouteControlPanelThemeOverlay" format="reference" />
42
43    <attr name="mediaRouteTheme" format="reference" />
44</resources>
45