Searched defs:onGetLayoutInflater (Results 1 - 14 of 14) sorted by relevance

/frameworks/base/packages/SystemUI/plugin/src/com/android/systemui/plugins/
H A DPluginFragment.java32 public LayoutInflater onGetLayoutInflater(Bundle savedInstanceState) { method in class:PluginFragment
33 return super.onGetLayoutInflater(savedInstanceState).cloneInContext(getContext());
/frameworks/support/fragment/tests/java/android/support/v4/app/
H A DHostCallbacks.java41 public LayoutInflater onGetLayoutInflater() { method in class:HostCallbacks
H A DFragmentTransactionTest.java196 // getLayoutInflater() didn't force onGetLayoutInflater()
471 public LayoutInflater onGetLayoutInflater(Bundle savedInstanceState) { method in class:FragmentTransactionTest.OnGetLayoutInflaterFragment
474 layoutInflater = super.onGetLayoutInflater(savedInstanceState);
H A DFragmentLifecycleTest.java1383 public LayoutInflater onGetLayoutInflater() { method in class:FragmentLifecycleTest.HostCallbacks
/frameworks/base/core/java/android/app/
H A DDialogFragment.java401 public LayoutInflater onGetLayoutInflater(Bundle savedInstanceState) { method in class:DialogFragment
403 return super.onGetLayoutInflater(savedInstanceState);
H A DFragmentHostCallback.java110 public LayoutInflater onGetLayoutInflater() { method in class:FragmentHostCallback
H A DFragment.java404 // The cached value from onGetLayoutInflater(Bundle) that will be returned from
1285 public LayoutInflater onGetLayoutInflater(Bundle savedInstanceState) { method in class:Fragment
1287 throw new IllegalStateException("onGetLayoutInflater() cannot be executed until the "
1290 final LayoutInflater result = mHost.onGetLayoutInflater();
1300 * {@link #onGetLayoutInflater(Bundle)} has not been called {@link #onGetLayoutInflater(Bundle)}
1317 * Calls {@link #onGetLayoutInflater(Bundle)} and caches the result for use by
1325 LayoutInflater layoutInflater = onGetLayoutInflater(savedInstanceState);
H A DActivity.java7663 public LayoutInflater onGetLayoutInflater() { method in class:Activity.HostCallbacks
/frameworks/base/tests/testables/src/android/testing/
H A DBaseFragmentTest.java214 public LayoutInflater onGetLayoutInflater() { method in class:BaseFragmentTest.HostCallbacks
/frameworks/support/fragment/java/android/support/v4/app/
H A DDialogFragment.java305 public LayoutInflater onGetLayoutInflater(Bundle savedInstanceState) { method in class:DialogFragment
307 return super.onGetLayoutInflater(savedInstanceState);
H A DFragmentHostCallback.java97 public LayoutInflater onGetLayoutInflater() { method in class:FragmentHostCallback
H A DFragmentActivity.java890 public LayoutInflater onGetLayoutInflater() { method in class:FragmentActivity.HostCallbacks
H A DFragment.java228 // The cached value from onGetLayoutInflater(Bundle) that will be returned from
1085 public LayoutInflater onGetLayoutInflater(Bundle savedInstanceState) { method in class:Fragment
1092 * {@link #onGetLayoutInflater(Bundle)} has not been called {@link #onGetLayoutInflater(Bundle)}
1109 * Calls {@link #onGetLayoutInflater(Bundle)} and caches the result for use by
1117 LayoutInflater layoutInflater = onGetLayoutInflater(savedInstanceState);
1123 * Override {@link #onGetLayoutInflater(Bundle)} when you need to change the
1128 * @deprecated Override {@link #onGetLayoutInflater(Bundle)} or call
1135 throw new IllegalStateException("onGetLayoutInflater() cannot be executed until the "
1138 LayoutInflater result = mHost.onGetLayoutInflater();
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/fragments/
H A DFragmentHostManager.java231 public LayoutInflater onGetLayoutInflater() { method in class:FragmentHostManager.HostCallbacks

Completed in 344 milliseconds