Home | History | Annotate | Download | only in internal

Lines Matching defs:styleName

190         final String styleName = keyStyleAttr.getString(R.styleable.Keyboard_KeyStyle_styleName);
191 if (styleName == null) {
193 KeyboardBuilder.TAG_KEY_STYLE + " has no styleName attribute", parser);
196 Log.d(TAG, String.format("<%s styleName=%s />",
197 KeyboardBuilder.TAG_KEY_STYLE, styleName));
198 if (mStyles.containsKey(styleName)) {
199 Log.d(TAG, KeyboardBuilder.TAG_KEY_STYLE + " " + styleName + " is overridden at "
214 mStyles.put(styleName, style);
220 final String styleName = keyAttr.getString(R.styleable.Keyboard_Key_keyStyle);
221 if (styleName == null) {
224 final KeyStyle style = mStyles.get(styleName);
226 throw new XmlParseUtils.ParseException("Unknown key style: " + styleName, parser);