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

/frameworks/base/policy/src/com/android/internal/policy/impl/
H A DPhoneLayoutInflater.java49 /** Override onCreateView to instantiate names that correspond to the
53 @Override protected View onCreateView(String name, AttributeSet attrs) throws ClassNotFoundException { method in class:PhoneLayoutInflater
66 return super.onCreateView(name, attrs);
/frameworks/base/core/java/android/view/
H A DLayoutInflater.java121 public View onCreateView(String name, Context context, AttributeSet attrs); method in interface:LayoutInflater.Factory
132 public View onCreateView(String name, Context context, AttributeSet attrs) { method in class:LayoutInflater.FactoryMerger
133 View v = mF1.onCreateView(name, context, attrs);
135 return mF2.onCreateView(name, context, attrs);
204 * returns null, proceed to call onCreateView(name).
216 * factory default {@link #onCreateView} method is called.
540 * super.onCreateView(name) for names you do not recognize.
547 protected View onCreateView(String name, AttributeSet attrs) method in class:LayoutInflater
563 View view = (mFactory == null) ? null : mFactory.onCreateView(name,
568 view = onCreateView(nam
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java207 AppWidgetHostView view = onCreateView(context, appWidgetId, appWidget);
226 protected AppWidgetHostView onCreateView(Context context, int appWidgetId, method in class:AppWidgetHost
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/android/
H A DBridgeInflater.java78 public View onCreateView(String name, AttributeSet attrs) throws ClassNotFoundException { method in class:BridgeInflater
98 view = super.onCreateView(name, attrs);
117 ClassNotFoundException exception = new ClassNotFoundException("onCreateView", e);
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DAppWidgetHostActivity.java192 protected AppWidgetHostView onCreateView(Context context, int appWidgetId, AppWidgetProviderInfo appWidget) {
/frameworks/base/core/java/android/preference/
H A DPreference.java384 * @see #onCreateView(ViewGroup)
389 convertView = onCreateView(parent);
408 protected View onCreateView(ViewGroup parent) { method in class:Preference
431 * @see #onCreateView(ViewGroup)
511 * {@link #onCreateView(ViewGroup)}.
/frameworks/base/core/java/android/app/
H A DActivity.java3722 * Stub implementation of {@link android.view.LayoutInflater.Factory#onCreateView} used when
3729 public View onCreateView(String name, Context context, AttributeSet attrs) { method in class:Activity

Completed in 375 milliseconds