1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3/* 4** 5** Copyright 2013, The Android Open Source Project 6** 7** Licensed under the Apache License, Version 2.0 (the "License"); 8** you may not use this file except in compliance with the License. 9** You may obtain a copy of the License at 10** 11** http://www.apache.org/licenses/LICENSE-2.0 12** 13** Unless required by applicable law or agreed to in writing, software 14** distributed under the License is distributed on an "AS IS" BASIS, 15** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 16** See the License for the specific language governing permissions and 17** limitations under the License. 18*/ 19--> 20<resources> 21 22 <declare-styleable name="LeanbackKeyboardView"> 23 <attr name="rowCount" format="integer" /> 24 <attr name="columnCount" format="integer" /> 25 </declare-styleable> 26 27 <!-- voice recognition indicator --> 28 <attr name="enabledBackgroundColor" format="color|reference" /> 29 <attr name="disabledBackgroundColor" format="color|reference" /> 30 <attr name="primaryLevels" format="reference" /> 31 <attr name="trailLevels" format="reference" /> 32 <attr name="minLevelRadius" format="dimension|reference" /> 33 <attr name="levelsCenterX" format="dimension|reference" /> 34 <attr name="levelsCenterY" format="dimension|reference" /> 35 <attr name="headerAlpha" format="dimension" /> 36 <attr name="soundTrailLevel" format="reference" /> 37 <attr name="soundPrimaryLevel" format="reference" /> 38 39 <declare-styleable name="BitmapSoundLevelView"> 40 <attr name="enabledBackgroundColor" /> 41 <attr name="disabledBackgroundColor" /> 42 <attr name="primaryLevels" /> 43 <attr name="trailLevels" /> 44 <attr name="minLevelRadius" /> 45 <attr name="levelsCenterX" /> 46 <attr name="levelsCenterY" /> 47 </declare-styleable> 48 49</resources>