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

1 2 3 4 5 6 7 8

  /frameworks/base/core/java/android/widget/
ResourceCursorAdapter.java 35 private LayoutInflater mInflater;
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);
ResourceCursorTreeAdapter.java 34 private LayoutInflater mInflater;
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,
  /frameworks/support/v4/java/android/support/v4/widget/
ResourceCursorAdapter.java 37 private LayoutInflater mInflater;
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);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowResourceCursorAdapter.java 40 private LayoutInflater mInflater;
54 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
73 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
84 return mInflater.inflate(mLayout, parent, false);
89 return mInflater.inflate(mDropDownLayout, parent, false);
  /frameworks/base/core/java/android/view/
ContextThemeWrapper.java 33 private LayoutInflater mInflater;
112 if (mInflater == null) {
113 mInflater = LayoutInflater.from(mBase).cloneInContext(this);
115 return mInflater;
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 36 private LayoutInflater mInflater;
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);
  /development/apps/Development/src/com/android/development/
ArrayAdapter.java 31 mInflater = (LayoutInflater)context.getSystemService(
65 view = mInflater.inflate(mLayoutRes, parent, false);
74 private final LayoutInflater mInflater;
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListTakeFocusFromSide.java 37 private LayoutInflater mInflater;
42 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
67 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAppWidgetHostView.java 34 private LayoutInflater mInflater;
42 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
47 return mInflater.inflate(R.layout.appwidget_error, this, false);
AddAdapter.java 37 private final LayoutInflater mInflater;
68 mInflater = (LayoutInflater) launcher.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
81 convertView = mInflater.inflate(R.layout.add_list_item, parent, false);
  /packages/apps/Stk/src/com/android/stk/
StkMenuAdapter.java 35 private final LayoutInflater mInflater;
41 mInflater = LayoutInflater.from(context);
50 convertView = mInflater.inflate(R.layout.stk_menu_item, parent,
  /frameworks/base/core/tests/coretests/src/android/view/
InflateTest.java 32 private LayoutInflater mInflater;
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);
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
WaitFragment.java 48 private LayoutInflater mInflater;
81 mInflater = inflater;
82 ViewGroup wrapper = (ViewGroup) mInflater
94 view = mInflater.inflate(R.layout.wait_for_manual_sync, root, false);
100 view = mInflater.inflate(R.layout.wait_default, root, false);
102 view = mInflater.inflate(R.layout.wait_for_sync, root, false);
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List14.java 47 private LayoutInflater mInflater;
53 mInflater = LayoutInflater.from(context);
106 convertView = mInflater.inflate(R.layout.list_item_icon_text, null);
  /packages/apps/Calculator/src/com/android/calculator2/
HistoryAdapter.java 32 private LayoutInflater mInflater;
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/
PhotoThumbnailAdapter.java 35 private LayoutInflater mInflater;
40 mInflater = LayoutInflater.from(context);
59 View view = mInflater.inflate(R.layout.photo_set_item, parent, false);
  /packages/apps/Launcher3/src/com/android/launcher3/
AddAdapter.java 37 private final LayoutInflater mInflater;
68 mInflater = (LayoutInflater) launcher.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
81 convertView = mInflater.inflate(R.layout.add_list_item, parent, false);
LauncherAppWidgetHostView.java 34 private LayoutInflater mInflater;
43 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
49 return mInflater.inflate(R.layout.appwidget_error, this, false);
  /packages/apps/Mms/src/com/android/mms/ui/
IconListAdapter.java 36 protected LayoutInflater mInflater;
68 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
75 view = mInflater.inflate(mResource, parent, false);
  /packages/apps/Browser/src/com/android/browser/addbookmark/
FolderSpinnerAdapter.java 45 private LayoutInflater mInflater;
52 mInflater = LayoutInflater.from(mContext);
108 convertView = mInflater.inflate(
118 convertView = mInflater.inflate(android.R.layout.simple_spinner_item,
  /packages/apps/Contacts/src/com/android/contacts/detail/
StreamItemAdapter.java 46 private final LayoutInflater mInflater;
55 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
100 return mInflater.inflate(R.layout.updates_header_contact, null);
108 mInflater, mContext, convertView, streamItem,
  /packages/apps/Settings/src/com/android/settings/
MediaFormat.java 41 private LayoutInflater mInflater;
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/UnifiedEmail/src/com/android/mail/compose/
FromAddressSpinnerAdapter.java 49 private LayoutInflater mInflater;
57 if (mInflater == null) {
58 mInflater = (LayoutInflater) getContext().getSystemService(
61 return mInflater;
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-ShareActionProvider/ActionBarCompat-ShareActionProviderSample/src/main/java/com/example/android/actionbarcompat/shareactionprovider/
MainActivity.java 94 LayoutInflater mInflater;
115 if (mInflater == null) {
116 mInflater = LayoutInflater.from(MainActivity.this);
126 TextView tv = (TextView) mInflater
138 ImageView iv = (ImageView) mInflater
  /development/samples/browseable/ShareActionProvider/src/com.example.android.actionbarcompat.shareactionprovider/
MainActivity.java 94 LayoutInflater mInflater;
115 if (mInflater == null) {
116 mInflater = LayoutInflater.from(MainActivity.this);
126 TextView tv = (TextView) mInflater
138 ImageView iv = (ImageView) mInflater

Completed in 719 milliseconds

1 2 3 4 5 6 7 8