Searched refs:mInflater (Results 1 - 25 of 58) sorted by relevance

123

/frameworks/base/core/java/android/widget/
H A DResourceCursorAdapter.java35 private LayoutInflater mInflater; field in class:ResourceCursorAdapter
54 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
76 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
93 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
104 return mInflater.inflate(mLayout, parent, false);
109 return mInflater.inflate(mDropDownLayout, parent, false);
H A DResourceCursorTreeAdapter.java34 private LayoutInflater mInflater; field in class:ResourceCursorTreeAdapter
60 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
100 return mInflater.inflate((isLastChild) ? mLastChildLayout : mChildLayout, parent, false);
105 return mInflater.inflate((isExpanded) ? mExpandedGroupLayout : mCollapsedGroupLayout,
H A DSimpleExpandableListAdapter.java52 private LayoutInflater mInflater; field in class:SimpleExpandableListAdapter
210 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
240 return mInflater.inflate((isLastChild) ? mLastChildLayout : mChildLayout, parent, false);
289 return mInflater.inflate((isExpanded) ? mExpandedGroupLayout : mCollapsedGroupLayout,
/frameworks/support/v4/java/android/support/v4/widget/
H A DResourceCursorAdapter.java37 private LayoutInflater mInflater; field in class:ResourceCursorAdapter
56 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
78 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
95 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
106 return mInflater.inflate(mLayout, parent, false);
111 return mInflater.inflate(mDropDownLayout, parent, false);
/frameworks/base/core/java/android/view/
H A DContextThemeWrapper.java31 private LayoutInflater mInflater; field in class:ContextThemeWrapper
108 if (mInflater == null) {
109 mInflater = LayoutInflater.from(getBaseContext()).cloneInContext(this);
111 return mInflater;
H A DViewStub.java77 private LayoutInflater mInflater; field in class:ViewStub
194 mInflater = inflater;
201 return mInflater;
259 if (mInflater != null) {
260 factory = mInflater;
/frameworks/base/core/tests/coretests/src/android/widget/listview/
H A DListTakeFocusFromSide.java37 private LayoutInflater mInflater; field in class:ListTakeFocusFromSide.ThrashListAdapter
42 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
67 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
H A DListThrasher.java51 private LayoutInflater mInflater; field in class:ListThrasher.ThrashListAdapter
64 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
91 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
/frameworks/base/core/tests/coretests/src/android/view/
H A DInflateTest.java32 private LayoutInflater mInflater; field in class:InflateTest
40 mInflater = LayoutInflater.from(mContext);
46 // mInflater.inflate(mResId, null, null);
59 mView = mInflater.inflate(resourceId, null);
65 mInflater.inflate(resourceId, null);
67 mInflater.inflate(resourceId, null);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DViewStubCompat.java44 private LayoutInflater mInflater; field in class:ViewStubCompat
132 mInflater = inflater;
139 return mInflater;
196 if (mInflater != null) {
197 factory = mInflater;
/frameworks/base/core/java/com/android/internal/view/menu/
H A DListMenuPresenter.java40 LayoutInflater mInflater; field in class:ListMenuPresenter
65 mInflater = LayoutInflater.from(mContext);
82 mInflater = LayoutInflater.from(mContext);
85 if (mInflater == null) {
86 mInflater = LayoutInflater.from(mContext);
98 mMenuView = (ExpandedMenuView) mInflater.inflate(
254 convertView = mInflater.inflate(mItemLayoutRes, parent, false);
H A DListMenuItemView.java54 private LayoutInflater mInflater; field in class:ListMenuItemView
272 if (mInflater == null) {
273 mInflater = LayoutInflater.from(mContext);
275 return mInflater;
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
H A DListMenuPresenter.java44 LayoutInflater mInflater; field in class:ListMenuPresenter
69 mInflater = LayoutInflater.from(mContext);
86 mInflater = LayoutInflater.from(mContext);
89 if (mInflater == null) {
90 mInflater = LayoutInflater.from(mContext);
102 mMenuView = (ExpandedMenuView) mInflater.inflate(
258 convertView = mInflater.inflate(mItemLayoutRes, parent, false);
/frameworks/base/core/tests/coretests/src/android/widget/gridview/
H A DGridThrasher.java53 private LayoutInflater mInflater; field in class:GridThrasher.ThrashListAdapter
66 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
93 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
/frameworks/base/media/tests/CameraBrowser/src/com/android/camerabrowser/
H A DStorageBrowser.java49 private final LayoutInflater mInflater; field in class:StorageBrowser.StorageAdapter
53 mInflater = (LayoutInflater)c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
75 view = (TextView)mInflater.inflate(
H A DCameraBrowser.java53 private final LayoutInflater mInflater; field in class:CameraBrowser.CameraAdapter
57 mInflater = (LayoutInflater)c.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
75 view = (TwoLineListItem)mInflater.inflate(
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 private final LayoutInflater mInflater; field in class:SegmentedButtons
46 mInflater = LayoutInflater.from(mContext);
72 final Button b = (Button) mInflater.inflate(R.layout.segmented_button, this, false);
/frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
H A DResourceLoadingTest.java35 TransitionInflater mInflater; field in class:ResourceLoadingTest
47 mInflater = TransitionInflater.from(this);
/frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/bars/
H A DOverflowMenuAdapter.java75 LayoutInflater mInflater = LayoutInflater.from(context);
76 convertView = mInflater.inflate(com.android.internal.R.layout.popup_menu_item_layout,
/frameworks/base/core/java/android/text/method/
H A DCharacterPickerDialog.java46 private LayoutInflater mInflater; field in class:CharacterPickerDialog
63 mInflater = LayoutInflater.from(context);
124 mInflater.inflate(R.layout.character_picker_button, null);
/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);
/frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
H A DSupportActionModeWrapper.java38 final MenuInflater mInflater; field in class:SupportActionModeWrapper
45 mInflater = new SupportMenuInflater(context);
115 return mInflater;
/frameworks/opt/chips/src/com/android/ex/chips/
H A DDropdownChipLayouter.java39 private final LayoutInflater mInflater; field in class:DropdownChipLayouter
45 mInflater = inflater;
140 return mInflater.inflate(getItemLayoutResId(type), null);
156 return convertView != null ? convertView : mInflater.inflate(itemLayout, parent, 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);

Completed in 538 milliseconds

123