Searched refs:mInflater (Results 26 - 50 of 65) sorted by relevance

123

/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DObjectBrowser.java56 private final LayoutInflater mInflater; field in class:ObjectBrowser.ObjectAdapter
60 mInflater = (LayoutInflater)c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
82 view = mInflater.inflate(R.layout.object_list, parent, false);
/frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
H A DSegmentedButtons.java38 protected final LayoutInflater mInflater; field in class:SegmentedButtons
47 mInflater = LayoutInflater.from(mContext);
78 return (Button) mInflater.inflate(R.layout.segmented_button, this, false);
/frameworks/base/tests/MusicBrowserDemo/src/com/example/android/musicbrowserdemo/
H A DAppListFragment.java87 private final LayoutInflater mInflater; field in class:AppListFragment.Adapter
93 mInflater = LayoutInflater.from(context);
132 convertView = mInflater.inflate(android.R.layout.simple_list_item_1, parent, false);
H A DBrowserListFragment.java163 private final LayoutInflater mInflater; field in class:BrowserListFragment.Adapter
169 mInflater = LayoutInflater.from(context);
195 convertView = mInflater.inflate(android.R.layout.simple_list_item_1, parent, false);
/frameworks/base/core/java/android/widget/
H A DArrayAdapter.java63 private final LayoutInflater mInflater; field in class:ArrayAdapter
181 mInflater = LayoutInflater.from(context);
371 return createViewFromResource(mInflater, position, convertView, parent, mResource);
440 } else if (theme == mInflater.getContext().getTheme()) {
441 mDropDownInflater = mInflater;
456 final LayoutInflater inflater = mDropDownInflater == null ? mInflater : mDropDownInflater;
H A DYearPickerView.java114 private final LayoutInflater mInflater; field in class:YearPickerView.YearAdapter
121 mInflater = LayoutInflater.from(context);
177 v = (TextView) mInflater.inflate(ITEM_LAYOUT, parent, false);
H A DDayPickerPagerAdapter.java46 private final LayoutInflater mInflater; field in class:DayPickerPagerAdapter
67 mInflater = LayoutInflater.from(context);
214 final View itemView = mInflater.inflate(mLayoutResId, container, false);
/frameworks/opt/timezonepicker/src/com/android/timezonepicker/
H A DTimeZoneResultAdapter.java79 private LayoutInflater mInflater; field in class:TimeZoneResultAdapter
95 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
271 v = mInflater.inflate(R.layout.empty_time_zone_item, null);
277 v = mInflater.inflate(R.layout.time_zone_item, null);
H A DTimeZoneFilterTypeAdapter.java84 private LayoutInflater mInflater; field in class:TimeZoneFilterTypeAdapter
92 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
117 v = mInflater.inflate(R.layout.time_zone_filter_item, null);
/frameworks/support/v7/appcompat/src/android/support/v7/view/menu/
H A DListMenuItemView.java63 private LayoutInflater mInflater; field in class:ListMenuItemView
292 if (mInflater == null) {
293 mInflater = LayoutInflater.from(getContext());
295 return mInflater;
H A DBaseMenuPresenter.java44 protected LayoutInflater mInflater; field in class:BaseMenuPresenter
71 mInflater = LayoutInflater.from(mContext);
/frameworks/base/core/java/com/android/internal/view/menu/
H A DBaseMenuPresenter.java38 protected LayoutInflater mInflater; field in class:BaseMenuPresenter
65 mInflater = LayoutInflater.from(mContext);
H A DListMenuItemView.java56 private LayoutInflater mInflater; field in class:ListMenuItemView
286 if (mInflater == null) {
287 mInflater = LayoutInflater.from(mContext);
289 return mInflater;
/frameworks/base/core/java/android/app/
H A DFragmentBreadCrumbs.java47 LayoutInflater mInflater; field in class:FragmentBreadCrumbs
124 mInflater = (LayoutInflater)a.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
125 mContainer = (LinearLayout)mInflater.inflate(
322 final View item = mInflater.inflate(mLayoutResId, this, false);
H A DLauncherActivity.java101 protected final LayoutInflater mInflater; field in class:LauncherActivity.ActivityAdapter
110 mInflater = (LayoutInflater) LauncherActivity.this.getSystemService(
153 view = mInflater.inflate(
/frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
H A DDialogActivity.java35 private LayoutInflater mInflater; field in class:DialogActivity
H A DInputTypeActivity.java36 private LayoutInflater mInflater; field in class:InputTypeActivity
51 mInflater = getLayoutInflater();
145 View view = mInflater.inflate(R.layout.sample_edit_text, mParent, false);
H A DEditTextActivityDialog.java39 private LayoutInflater mInflater; field in class:EditTextActivityDialog
/frameworks/base/core/java/android/accounts/
H A DGrantCredentialsPermissionActivity.java46 protected LayoutInflater mInflater; field in class:GrantCredentialsPermissionActivity
53 mInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
154 View view = mInflater.inflate(R.layout.permissions_package_list_item, null);
/frameworks/base/core/java/com/android/internal/app/
H A DMediaRouteChooserDialog.java181 private final LayoutInflater mInflater; field in class:MediaRouteChooserDialog.RouteAdapter
185 mInflater = LayoutInflater.from(context);
215 view = mInflater.inflate(R.layout.media_route_list_item, parent, false);
/frameworks/base/core/tests/coretests/src/android/view/
H A DListContextMenu.java47 private LayoutInflater mInflater; field in class:ListContextMenu.ThrashListAdapter
52 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
77 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DUserAdapter.java79 private final LayoutInflater mInflater; field in class:UserAdapter
86 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
117 return mInflater.inflate(R.layout.user_preference, parent, false);
/frameworks/support/v7/mediarouter/src/android/support/v7/app/
H A DMediaRouteChooserDialog.java237 private final LayoutInflater mInflater; field in class:MediaRouteChooserDialog.RouteAdapter
245 mInflater = LayoutInflater.from(context);
272 view = mInflater.inflate(R.layout.mr_chooser_list_item, parent, false);
/frameworks/opt/chips/src/com/android/ex/chips/
H A DDropdownChipLayouter.java63 private final LayoutInflater mInflater; field in class:DropdownChipLayouter
71 mInflater = inflater;
203 return mInflater.inflate(getItemLayoutResId(type), null);
219 return convertView != null ? convertView : mInflater.inflate(itemLayout, parent, false);
/frameworks/support/frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/app/
H A DLoaderCustomSupport.java367 private final LayoutInflater mInflater; field in class:LoaderCustomSupport.AppListAdapter
371 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
390 view = mInflater.inflate(R.layout.list_item_icon_text, parent, false);

Completed in 992 milliseconds

123