Searched refs:onCreateItem (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/preference/
H A DGenericInflater.java81 public T onCreateItem(String name, Context context, AttributeSet attrs); method in interface:GenericInflater.Factory
92 public T onCreateItem(String name, Context context, AttributeSet attrs) { method in class:GenericInflater.FactoryMerger
93 T v = mF1.onCreateItem(name, context, attrs);
95 return mF2.onCreateItem(name, context, attrs);
171 * returns null, proceed to call onCreateItem(name).
183 * default {@link #onCreateItem} method is called.
410 * super.onCreateItem(name) for names you do not recognize.
416 protected T onCreateItem(String name, AttributeSet attrs) throws ClassNotFoundException { method in class:GenericInflater
424 T item = (mFactory == null) ? null : mFactory.onCreateItem(name, mContext, attrs);
428 item = onCreateItem(nam
[all...]

Completed in 24 milliseconds