1 <!-- 2 ~ Copyright (C) 2012 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 19 <attr format="reference" name="dialpad_style"/> 20 <attr format="dimension" name="dialpad_end_key_spacing"/> 21 22 <declare-styleable name="Dialpad"> 23 <attr format="color" name="dialpad_key_button_touch_tint"/> 24 <attr format="dimension" name="dialpad_digits_adjustable_text_size"/> 25 <attr format="dimension" name="dialpad_digits_adjustable_height"/> 26 <attr format="dimension" name="dialpad_key_letters_size_for_dual_alphabets"/> 27 <attr format="dimension" name="dialpad_key_letters_size_for_single_alphabet"/> 28 <attr format="dimension" name="dialpad_key_numbers_size"/> 29 <attr format="dimension" name="dialpad_key_number_margin_bottom"/> 30 </declare-styleable> 31 32 <declare-styleable name="Theme.Dialpad"> 33 <attr format="color" name="dialpad_text_color"/> 34 <attr format="color" name="dialpad_text_color_primary"/> 35 <attr format="color" name="dialpad_text_color_secondary"/> 36 <attr format="color" name="dialpad_icon_tint"/> 37 <attr format="color" name="dialpad_voicemail_tint"/> 38 <attr format="color" name="dialpad_background"/> 39 <attr format="dimension" name="dialpad_elevation"/> 40 </declare-styleable> 41 </resources> 42