HomeSort by relevance Sort by last modified time
    Searched refs:mInflater (Results 126 - 150 of 193) sorted by null

1 2 3 4 56 7 8

  /packages/apps/Calendar/src/com/android/calendar/event/
EventLocationAdapter.java 139 private final LayoutInflater mInflater;
153 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
174 view = mInflater.inflate(R.layout.location_dropdown_item, parent, false);
  /packages/apps/Calendar/src/com/android/calendar/selectcalendars/
SelectCalendarsSimpleAdapter.java 59 private LayoutInflater mInflater;
101 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
227 view = mInflater.inflate(mLayout, parent, false);
SelectSyncedCalendarsMultiAccountAdapter.java 65 private final LayoutInflater mInflater;
226 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
415 return mInflater.inflate(R.layout.calendar_sync_item, parent, false);
421 return mInflater.inflate(R.layout.account_item, parent, false);
  /packages/apps/Contacts/src/com/android/contacts/editor/
RawContactReadOnlyEditorView.java 56 private LayoutInflater mInflater;
95 mInflater = (LayoutInflater)getContext().getSystemService(
253 final View field = mInflater.inflate(R.layout.item_read_only_field, mGeneral, false);
LabeledEditorView.java 517 private final LayoutInflater mInflater;
523 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
560 textView = (TextView) mInflater.inflate(resource, parent, false);
  /packages/apps/Mms/src/com/android/mms/ui/
MessageListAdapter.java 117 protected LayoutInflater mInflater;
133 mInflater = (LayoutInflater) context.getSystemService(
220 View view = mInflater.inflate((boxType == INCOMING_ITEM_TYPE_SMS ||
SlideshowEditActivity.java 357 private final LayoutInflater mInflater;
366 mInflater = LayoutInflater.from(context);
377 slideListItemView = (SlideListItemView) mInflater.inflate(
  /packages/apps/Settings/src/com/android/settings/
ActivityPicker.java 271 private final LayoutInflater mInflater;
278 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
308 convertView = mInflater.inflate(R.layout.pick_item, parent, false);
DreamSettings.java 284 private final LayoutInflater mInflater;
288 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
334 final View row = mInflater.inflate(R.layout.dream_info_row, parent, false);
NotificationAccessSettings.java 271 final LayoutInflater mInflater;
275 mInflater = (LayoutInflater)
299 View v = mInflater.inflate(R.layout.notification_listener_item, parent, false);
NotificationStation.java 305 private final LayoutInflater mInflater;
309 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
381 final View row = mInflater.inflate(R.layout.notification_log_row, parent, false);
KeyguardAppWidgetPickActivity.java 447 private final LayoutInflater mInflater;
454 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
484 convertView = mInflater.inflate(R.layout.keyguard_appwidget_item, parent, false);
  /packages/apps/DeskClock/src/com/android/deskclock/worldclock/
CitiesActivity.java 130 private final LayoutInflater mInflater;
237 mInflater = factory;
337 view = mInflater.inflate(R.layout.city_list_header, parent, false);
345 view = mInflater.inflate(R.layout.city_list_item, parent, false);
  /packages/apps/Settings/src/com/android/settings/applications/
ManageApplications.java 190 public LayoutInflater mInflater;
246 mInflater = inflater;
443 private LayoutInflater mInflater;
480 View root = tab.build(mInflater, mContentContainer, mRootView);
776 AppViewHolder holder = AppViewHolder.createOrRecycle(mTab.mInflater, convertView);
    [all...]
RunningServiceDetails.java 58 LayoutInflater mInflater;
226 mServicesHeader = (TextView)mInflater.inflate(R.layout.separator_label,
236 mProcessesHeader = (TextView)mInflater.inflate(R.layout.separator_label,
259 View root = mInflater.inflate(R.layout.running_service_details_service,
335 View root = mInflater.inflate(R.layout.running_service_details_process,
505 mInflater = (LayoutInflater)getActivity().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
RunningProcessesView.java 210 final LayoutInflater mInflater;
218 mInflater = (LayoutInflater)getContext().getSystemService(
296 View v = mInflater.inflate(R.layout.running_processes_item, parent, false);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
MessageHeaderView.java 186 private final LayoutInflater mInflater;
250 mInflater = LayoutInflater.from(context);
    [all...]
  /development/apps/Development/src/com/android/development/
AccountsTester.java 100 protected LayoutInflater mInflater;
104 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
123 convertView = mInflater.inflate(R.layout.account_list_item, null);
  /development/samples/training/ContactsList/src/com/example/android/contactslist/ui/
ContactsListFragment.java 642 private LayoutInflater mInflater; // Stores the layout inflater
654 mInflater = LayoutInflater.from(context);
697 mInflater.inflate(R.layout.contact_list_item, viewGroup, false);
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 48 private final LayoutInflater mInflater;
76 mInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
202 agendaDayView = mInflater.inflate(R.layout.agenda_day, parent, false);
  /packages/apps/Contacts/src/com/android/contacts/detail/
ContactDetailFragment.java 203 private LayoutInflater mInflater;
288 mInflater = inflater;
    [all...]
  /frameworks/base/core/java/android/widget/
AppSecurityPermissions.java 71 private final LayoutInflater mInflater;
257 mInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
468 LinearLayout permsView = (LinearLayout) mInflater.inflate(R.layout.app_perms_summary, null);
516 return getPermissionItemView(mContext, mInflater, grp, perm, first, newPermPrefix,
  /frameworks/base/core/java/com/android/internal/app/
AlertController.java 751 public final LayoutInflater mInflater;
807 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
870 mInflater.inflate(dialog.mListLayout, null);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
CustomContactListFilterActivity.java 544 private LayoutInflater mInflater;
552 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
573 convertView = mInflater.inflate(
596 convertView = mInflater.inflate(
    [all...]
  /frameworks/base/core/java/android/inputmethodservice/
InputMethodService.java 257 LayoutInflater mInflater;
654 mInflater = (LayoutInflater)getSystemService(
688 mRootView = mInflater.inflate(
    [all...]

Completed in 372 milliseconds

1 2 3 4 56 7 8