Searched defs:onCreateItem (Results 1 - 3 of 3) sorted by path

/frameworks/base/core/java/android/preference/
H A DGenericInflater.java82 public T onCreateItem(String name, Context context, AttributeSet attrs); method in interface:GenericInflater.Factory
93 public T onCreateItem(String name, Context context, AttributeSet attrs) { method in class:GenericInflater.FactoryMerger
94 T v = mF1.onCreateItem(name, context, attrs);
96 return mF2.onCreateItem(name, context, attrs);
172 * returns null, proceed to call onCreateItem(name).
184 * default {@link #onCreateItem} method is called.
412 * super.onCreateItem(name) for names you do not recognize.
418 protected T onCreateItem(String name, AttributeSet attrs) throws ClassNotFoundException { method in class:GenericInflater
426 T item = (mFactory == null) ? null : mFactory.onCreateItem(name, mContext, attrs);
430 item = onCreateItem(nam
[all...]
/frameworks/base/tools/layoutlib/bridge/src/android/preference/
H A DBridgePreferenceInflater.java32 protected Preference onCreateItem(String name, AttributeSet attrs) method in class:BridgePreferenceInflater
45 Preference preference = super.onCreateItem(name, attrs);
/frameworks/support/v7/preference/src/android/support/v7/preference/
H A DPreferenceInflater.java272 * super.onCreateItem(name) for names you do not recognize.
278 protected Preference onCreateItem(String name, AttributeSet attrs) method in class:PreferenceInflater
289 item = onCreateItem(name, attrs);

Completed in 133 milliseconds