Searched refs:inflater (Results 176 - 200 of 385) sorted by relevance

1234567891011>>

/frameworks/base/core/java/android/app/
H A DTimePickerDialog.java119 final LayoutInflater inflater = LayoutInflater.from(themeContext);
120 final View view = inflater.inflate(R.layout.time_picker_dialog, null);
/frameworks/base/core/java/android/view/
H A DViewStub.java200 public void setLayoutInflater(LayoutInflater inflater) { argument
201 mInflater = inflater;
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/phone/
H A DPipDismissViewController.java71 LayoutInflater inflater = LayoutInflater.from(mContext);
72 mDismissView = inflater.inflate(R.layout.pip_dismiss_view, null);
/frameworks/base/packages/SystemUI/src/com/android/systemui/pip/tv/
H A DPipControlButtonView.java78 LayoutInflater inflater = (LayoutInflater) getContext()
80 inflater.inflate(R.layout.tv_pip_control_button, this);
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/car/
H A DUserGridView.java138 LayoutInflater inflater = (LayoutInflater)getContext().getSystemService
140 convertView = inflater.inflate(R.layout.car_fullscreen_user_pod, null);
/frameworks/base/packages/SystemUI/src/com/android/systemui/usb/
H A DUsbDebuggingActivity.java75 LayoutInflater inflater = LayoutInflater.from(ap.mContext);
76 View checkbox = inflater.inflate(com.android.internal.R.layout.always_use_checkbox, null);
/frameworks/base/tests/BiDiTests/src/com/android/bidi/
H A DBiDiTestGridLayoutCodeLtr.java50 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
52 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false);
H A DBiDiTestGridLayoutCodeRtl.java50 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
52 currentView = (FrameLayout) inflater.inflate(R.layout.grid_layout_code, container, false);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DContactsExpansion.java64 LayoutInflater inflater = (LayoutInflater)
66 View contactItem = inflater.inflate(R.layout.contact_collapsed, container, false);
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/
H A DGlifRecyclerLayout.java83 protected View onInflateTemplate(LayoutInflater inflater, int template) { argument
87 return super.onInflateTemplate(inflater, template);
/frameworks/opt/setupwizard/library/full-support/src/com/android/setupwizardlib/items/
H A DRecyclerItemAdapter.java83 final LayoutInflater inflater = LayoutInflater.from(parent.getContext());
84 final View view = inflater.inflate(viewType, parent, false);
/frameworks/opt/setupwizard/library/full-support/test/instrumentation/src/com/android/setupwizardlib/test/
H A DGlifRecyclerLayoutTest.java66 LayoutInflater inflater = LayoutInflater.from(mContext);
68 inflater.inflate(R.layout.test_glif_recycler_layout, null);
H A DSetupWizardRecyclerLayoutTest.java67 LayoutInflater inflater = LayoutInflater.from(mContext);
69 inflater.inflate(R.layout.test_recycler_layout, null);
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/view/
H A DStickyHeaderListView.java80 LayoutInflater inflater = LayoutInflater.from(getContext());
81 View header = inflater.inflate(headerResId, this, false);
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/
H A DGlifListLayoutTest.java78 LayoutInflater inflater = LayoutInflater.from(mContext);
80 inflater.inflate(R.layout.test_glif_list_layout, null);
/frameworks/support/fragment/java/android/support/v4/app/
H A DFragmentController.java318 public boolean dispatchCreateOptionsMenu(Menu menu, MenuInflater inflater) { argument
319 return mHost.mFragmentManager.dispatchCreateOptionsMenu(menu, inflater);
/frameworks/support/frameworks/support/samples/Support13Demos/src/com/example/android/supportv13/app/
H A DFragmentPagerSupport.java123 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
125 View v = inflater.inflate(R.layout.fragment_pager_list, container, false);
H A DFragmentStatePagerSupport.java123 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
125 View v = inflater.inflate(R.layout.fragment_pager_list, container, false);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DFragmentDialogSupport.java149 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
151 View v = inflater.inflate(R.layout.fragment_dialog, container, false);
H A DFragmentPagerSupport.java122 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
124 View v = inflater.inflate(R.layout.fragment_pager_list, container, false);
H A DFragmentReceiveResultSupport.java105 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
107 View v = inflater.inflate(R.layout.receive_result, container, false);
H A DFragmentStackSupport.java130 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
132 View v = inflater.inflate(R.layout.hello_world, container, false);
H A DFragmentStatePagerSupport.java123 public View onCreateView(LayoutInflater inflater, ViewGroup container, argument
125 View v = inflater.inflate(R.layout.fragment_pager_list, container, false);
/frameworks/support/frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
H A DNestedRecyclerViewActivity.java67 LayoutInflater inflater = LayoutInflater.from(parent.getContext());
68 TextView textView = (TextView) inflater.inflate(R.layout.nested_item, parent, false);
/frameworks/support/frameworks/support/samples/SupportDesignDemos/src/com/example/android/support/design/widget/
H A DBottomSheetDynamicContent.java115 ViewHolder(LayoutInflater inflater, ViewGroup parent) { argument
116 super(inflater.inflate(android.R.layout.simple_list_item_1, parent, false));

Completed in 627 milliseconds

1234567891011>>