102a30a8cebafd02e20c89928925e259689e7c393Adam Powell<?xml version="1.0" encoding="utf-8"?>
202a30a8cebafd02e20c89928925e259689e7c393Adam Powell<!-- Copyright (C) 2011 The Android Open Source Project
302a30a8cebafd02e20c89928925e259689e7c393Adam Powell
402a30a8cebafd02e20c89928925e259689e7c393Adam Powell     Licensed under the Apache License, Version 2.0 (the "License");
502a30a8cebafd02e20c89928925e259689e7c393Adam Powell     you may not use this file except in compliance with the License.
602a30a8cebafd02e20c89928925e259689e7c393Adam Powell     You may obtain a copy of the License at
702a30a8cebafd02e20c89928925e259689e7c393Adam Powell
802a30a8cebafd02e20c89928925e259689e7c393Adam Powell          http://www.apache.org/licenses/LICENSE-2.0
902a30a8cebafd02e20c89928925e259689e7c393Adam Powell
1002a30a8cebafd02e20c89928925e259689e7c393Adam Powell     Unless required by applicable law or agreed to in writing, software
1102a30a8cebafd02e20c89928925e259689e7c393Adam Powell     distributed under the License is distributed on an "AS IS" BASIS,
1202a30a8cebafd02e20c89928925e259689e7c393Adam Powell     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1302a30a8cebafd02e20c89928925e259689e7c393Adam Powell     See the License for the specific language governing permissions and
1402a30a8cebafd02e20c89928925e259689e7c393Adam Powell     limitations under the License.
1502a30a8cebafd02e20c89928925e259689e7c393Adam Powell-->
1602a30a8cebafd02e20c89928925e259689e7c393Adam Powell
1702a30a8cebafd02e20c89928925e259689e7c393Adam Powell<!-- This is the rating bar drawable that is used to a show a filled star. -->
1802a30a8cebafd02e20c89928925e259689e7c393Adam Powell<selector xmlns:android="http://schemas.android.com/apk/res/android">
1902a30a8cebafd02e20c89928925e259689e7c393Adam Powell
2002a30a8cebafd02e20c89928925e259689e7c393Adam Powell    <item android:state_pressed="true"
2102a30a8cebafd02e20c89928925e259689e7c393Adam Powell          android:state_window_focused="true"
2202a30a8cebafd02e20c89928925e259689e7c393Adam Powell          android:drawable="@drawable/btn_rating_star_off_pressed_holo_dark" />
2302a30a8cebafd02e20c89928925e259689e7c393Adam Powell
2402a30a8cebafd02e20c89928925e259689e7c393Adam Powell    <item android:state_focused="true"
2502a30a8cebafd02e20c89928925e259689e7c393Adam Powell          android:state_window_focused="true"
2602a30a8cebafd02e20c89928925e259689e7c393Adam Powell          android:drawable="@drawable/btn_rating_star_off_focused_holo_dark" />
2702a30a8cebafd02e20c89928925e259689e7c393Adam Powell
2802a30a8cebafd02e20c89928925e259689e7c393Adam Powell    <item android:state_selected="true"
2902a30a8cebafd02e20c89928925e259689e7c393Adam Powell          android:state_window_focused="true"
3002a30a8cebafd02e20c89928925e259689e7c393Adam Powell          android:drawable="@drawable/btn_rating_star_off_focused_holo_dark" />
3102a30a8cebafd02e20c89928925e259689e7c393Adam Powell
3202a30a8cebafd02e20c89928925e259689e7c393Adam Powell    <item android:drawable="@drawable/btn_rating_star_off_normal_holo_dark" />
3302a30a8cebafd02e20c89928925e259689e7c393Adam Powell
3402a30a8cebafd02e20c89928925e259689e7c393Adam Powell</selector>
35