Lines Matching defs:attrs

78          * @param attrs Inflation attributes as specified in XML file.
81 public T onCreateItem(String name, Context context, AttributeSet attrs);
92 public T onCreateItem(String name, Context context, AttributeSet attrs) {
93 T v = mF1.onCreateItem(name, context, attrs);
95 return mF2.onCreateItem(name, context, attrs);
293 final AttributeSet attrs = Xml.asAttributeSet(parser);
318 attrs);
326 rInflate(parser, result, attrs);
363 * @param attrs The XML attributes supplied for this instance.
367 public final T createItem(String name, String prefix, AttributeSet attrs)
382 args[1] = attrs;
386 InflateException ie = new InflateException(attrs
397 InflateException ie = new InflateException(attrs
413 * @param attrs An AttributeSet of attributes to apply to the item.
416 protected T onCreateItem(String name, AttributeSet attrs) throws ClassNotFoundException {
417 return createItem(name, mDefaultPackage, attrs);
420 private final T createItemFromTag(XmlPullParser parser, String name, AttributeSet attrs) {
424 T item = (mFactory == null) ? null : mFactory.onCreateItem(name, mContext, attrs);
428 item = onCreateItem(name, attrs);
430 item = createItem(name, null, attrs);
441 InflateException ie = new InflateException(attrs
448 InflateException ie = new InflateException(attrs
460 private void rInflate(XmlPullParser parser, T parent, final AttributeSet attrs)
472 if (onCreateCustomFromTag(parser, parent, attrs)) {
481 T item = createItemFromTag(parser, name, attrs);
493 rInflate(parser, item, attrs);
508 * @param attrs An AttributeSet of attributes to apply to the item.
513 final AttributeSet attrs) throws XmlPullParserException {