1d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell<?xml version="1.0" encoding="utf-8"?>
2d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell<!-- Copyright (C) 2012 The Android Open Source Project
3d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell
4d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell     Licensed under the Apache License, Version 2.0 (the "License");
5d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell     you may not use this file except in compliance with the License.
6d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell     You may obtain a copy of the License at
7d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell
8d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell          http://www.apache.org/licenses/LICENSE-2.0
9d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell
10d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell     Unless required by applicable law or agreed to in writing, software
11d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell     distributed under the License is distributed on an "AS IS" BASIS,
12d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell     See the License for the specific language governing permissions and
14d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell     limitations under the License.
15d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell-->
16d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell
17d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell<selector xmlns:android="http://schemas.android.com/apk/res/android">
18d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell
19d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell    <!-- Even though these two point to the same resource, have two states so the drawable will invalidate itself when coming out of pressed state. -->
20d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell    <item android:state_focused="true"  android:state_enabled="false" android:state_pressed="true" android:drawable="@drawable/list_selector_disabled_holo_light" />
21d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell    <item android:state_focused="true"  android:state_enabled="false"                              android:drawable="@drawable/list_selector_disabled_holo_light" />
22d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell    <item android:state_focused="true"                                android:state_pressed="true" android:drawable="@drawable/list_selector_background_transition_holo_light" />
23d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell    <item android:state_focused="false"                               android:state_pressed="true" android:drawable="@drawable/list_selector_background_transition_holo_light" />
24d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell    <item android:state_focused="true"                                                             android:drawable="@drawable/list_focused_holo" />
25d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell    <item android:state_activated="true" android:drawable="@android:drawable/list_activated_holo" />
26d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell    <item                                                                                          android:drawable="@color/transparent" />
27d6d0bddee363e0c7fe61f63bd9d9864a71d887d6Adam Powell</selector>
28