1<?xml version="1.0" encoding="utf-8"?> 2<resources> 3 <declare-styleable name="KeyboardView"> 4 <attr name="keyBackground" format="reference"/> 5 <attr name="keyTextSize" format="dimension"/> 6 <attr name="keyTextColorPrimary" format="color"/> 7 <attr name="keyTextColorSecondary" format="color"/> 8 <attr name="labelTextSize" format="dimension"/> 9 <attr name="fontFamily" format="string" /> 10 <attr name="textStyle" format="enum"> 11 <enum name="normal" value="0" /> 12 <enum name="bold" value="1" /> 13 <enum name="italic" value="2" /> 14 <enum name="bold_italic" value="3" /> 15 </attr> 16 </declare-styleable> 17</resources>