Searched defs:mInflater (Results 1 - 25 of 98) sorted by relevance

1234

/packages/apps/Calendar/src/com/android/calendar/
H A DEmailAddressAdapter.java36 private LayoutInflater mInflater; field in class:EmailAddressAdapter
40 mInflater = LayoutInflater.from(context);
45 return mInflater.inflate(R.layout.email_autocomplete_item, parent, false);
50 return mInflater.inflate(R.layout.email_autocomplete_item_loading, parent, false);
/packages/apps/Stk/src/com/android/stk/
H A DStkMenuAdapter.java35 private final LayoutInflater mInflater; field in class:StkMenuAdapter
41 mInflater = LayoutInflater.from(context);
50 convertView = mInflater.inflate(R.layout.stk_menu_item, parent,
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBookmarksAdapter.java37 LayoutInflater mInflater; field in class:BrowserBookmarksAdapter
47 mInflater = LayoutInflater.from(context);
58 return mInflater.inflate(R.layout.bookmark_thumbnail, parent, false);
/packages/apps/Calculator/src/com/android/calculator2/
H A DHistoryAdapter.java32 private LayoutInflater mInflater; field in class:HistoryAdapter
37 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
65 view = mInflater.inflate(R.layout.history_item, parent, false);
/packages/apps/Gallery2/src/com/android/photos/adapters/
H A DPhotoThumbnailAdapter.java35 private LayoutInflater mInflater; field in class:PhotoThumbnailAdapter
40 mInflater = LayoutInflater.from(context);
59 View view = mInflater.inflate(R.layout.photo_set_item, parent, false);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DLauncherAppWidgetHostView.java34 private LayoutInflater mInflater; field in class:LauncherAppWidgetHostView
42 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
47 return mInflater.inflate(R.layout.appwidget_error, this, false);
H A DAddAdapter.java37 private final LayoutInflater mInflater; field in class:AddAdapter
68 mInflater = (LayoutInflater) launcher.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
81 convertView = mInflater.inflate(R.layout.add_list_item, parent, false);
/packages/apps/Launcher3/src/com/android/launcher3/
H A DLauncherAppWidgetHostView.java34 private LayoutInflater mInflater; field in class:LauncherAppWidgetHostView
43 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
49 return mInflater.inflate(R.layout.appwidget_error, this, false);
H A DAddAdapter.java35 private final LayoutInflater mInflater; field in class:AddAdapter
66 mInflater = (LayoutInflater) launcher.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
79 convertView = mInflater.inflate(R.layout.add_list_item, parent, false);
/packages/experimental/NotificationLog/src/com/android/notificationlog/
H A DNotificationLogActivity.java40 private final LayoutInflater mInflater; field in class:NotificationLogActivity.NotificationLogAdapter
44 mInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
74 view = mInflater.inflate(R.layout.row, parent, false);
/packages/apps/Contacts/src/com/android/contacts/detail/
H A DStreamItemAdapter.java46 private final LayoutInflater mInflater; field in class:StreamItemAdapter
55 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
100 return mInflater.inflate(R.layout.updates_header_contact, null);
108 mInflater, mContext, convertView, streamItem,
H A DContactDetailUpdatesFragment.java46 private LayoutInflater mInflater; field in class:ContactDetailUpdatesFragment
103 mInflater = inflater;
104 return mInflater.inflate(R.layout.contact_detail_updates_fragment, container, false);
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/
H A DAccountsListAdapter.java40 private final LayoutInflater mInflater; field in class:AccountsListAdapter
73 mInflater = LayoutInflater.from(context);
87 : mInflater.inflate(R.layout.account_selector_list_item, parent, false);
/packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/
H A DMtpPagerAdapter.java33 private LayoutInflater mInflater; field in class:MtpPagerAdapter
43 mInflater = LayoutInflater.from(context);
94 v = (MtpFullscreenView) mInflater.inflate(R.layout.ingest_fullsize, container, false);
/packages/apps/Launcher3/WallpaperPicker/src/com/android/launcher3/
H A DThirdPartyWallpaperPickerListAdapter.java41 private final LayoutInflater mInflater; field in class:ThirdPartyWallpaperPickerListAdapter
65 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
124 view = mInflater.inflate(R.layout.wallpaper_picker_third_party_item, parent, false);
/packages/apps/Mms/src/com/android/mms/ui/
H A DIconListAdapter.java36 protected LayoutInflater mInflater; field in class:IconListAdapter
68 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
75 view = mInflater.inflate(mResource, parent, false);
H A DRecipientListActivity.java115 private final LayoutInflater mInflater; field in class:RecipientListActivity.RecipientListAdapter
123 mInflater = LayoutInflater.from(context);
130 final View listItemView = mInflater.inflate(mResourceId, null);
/packages/apps/Settings/src/com/android/settings/
H A DAppPicker.java84 private final LayoutInflater mInflater; field in class:AppPicker.AppListAdapter
88 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
118 AppViewHolder holder = AppViewHolder.createOrRecycle(mInflater, convertView);
H A DMediaFormat.java41 private LayoutInflater mInflater; field in class:MediaFormat
118 mFinalView = mInflater.inflate(R.layout.media_format_final, null);
141 mInitialView = mInflater.inflate(R.layout.media_format_primary, null);
156 mInflater = LayoutInflater.from(this);
/packages/apps/Settings/src/com/android/settings/applications/
H A DAppOpsSummary.java35 private LayoutInflater mInflater; field in class:AppOpsSummary
93 mInflater = inflater;
95 View rootView = mInflater.inflate(R.layout.app_ops_summary,
/packages/apps/UnifiedEmail/src/com/android/mail/compose/
H A DFromAddressSpinnerAdapter.java49 private LayoutInflater mInflater; field in class:FromAddressSpinnerAdapter
57 if (mInflater == null) {
58 mInflater = (LayoutInflater) getContext().getSystemService(
61 return mInflater;
/packages/apps/Browser/src/com/android/browser/addbookmark/
H A DFolderSpinnerAdapter.java45 private LayoutInflater mInflater; field in class:FolderSpinnerAdapter
52 mInflater = LayoutInflater.from(mContext);
108 convertView = mInflater.inflate(
118 convertView = mInflater.inflate(android.R.layout.simple_spinner_item,
/packages/apps/Camera/src/com/android/camera/ui/
H A DMoreSettingPopup.java55 LayoutInflater mInflater; field in class:MoreSettingPopup.MoreSettingAdapter
61 mInflater = LayoutInflater.from(context);
91 mInflater.inflate(viewLayoutId, parent, false);
/packages/apps/Camera2/src/com/android/camera/ui/
H A DMoreSettingPopup.java55 LayoutInflater mInflater; field in class:MoreSettingPopup.MoreSettingAdapter
61 mInflater = LayoutInflater.from(context);
91 mInflater.inflate(viewLayoutId, parent, false);
/packages/apps/Contacts/src/com/android/contacts/editor/
H A DRawContactReadOnlyEditorView.java56 private LayoutInflater mInflater; field in class:RawContactReadOnlyEditorView
95 mInflater = (LayoutInflater)getContext().getSystemService(
257 final View field = mInflater.inflate(R.layout.item_read_only_field, mGeneral, false);

Completed in 814 milliseconds

1234