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

1 2 3 4 5 6 7

  /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,
  /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;
  /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/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/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);
ListThrasher.java 51 private LayoutInflater mInflater;
64 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
91 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
  /frameworks/base/tests/ImfTest/src/com/android/imftest/samples/
InputTypeActivity.java 36 private LayoutInflater mInflater;
51 mInflater = getLayoutInflater();
145 View view = mInflater.inflate(R.layout.sample_edit_text, mParent, false);
DialogActivity.java 35 private LayoutInflater mInflater;
EditTextActivityDialog.java 39 private LayoutInflater mInflater;
  /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);
  /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);
  /packages/apps/Email/src/com/android/email/
EmailAddressAdapter.java 37 private LayoutInflater mInflater;
41 mInflater = LayoutInflater.from(context);
46 return mInflater.inflate(R.layout.recipient_dropdown_item, parent, false);
51 return mInflater.inflate(R.layout.recipient_dropdown_item_loading, parent, false);
  /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);
ListContextMenu.java 47 private LayoutInflater mInflater;
52 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
77 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
  /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);
  /cts/tests/tests/holo/src/android/holo/cts/
ThemeAdapter.java 59 private final LayoutInflater mInflater;
62 mInflater = inflater;
189 textView = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1,
  /development/samples/ApiDemos/src/com/example/android/apis/view/
List13.java 52 private LayoutInflater mInflater;
55 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
99 text = (TextView)mInflater.inflate(android.R.layout.simple_list_item_1, parent, false);
List14.java 47 private LayoutInflater mInflater;
53 mInflater = LayoutInflater.from(context);
106 convertView = mInflater.inflate(R.layout.list_item_icon_text, null);
  /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/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 37 LayoutInflater mInflater;
47 mInflater = LayoutInflater.from(context);
58 return mInflater.inflate(R.layout.bookmark_thumbnail, parent, false);
  /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/Contacts/src/com/android/contacts/detail/
ContactDetailUpdatesFragment.java 46 private LayoutInflater mInflater;
103 mInflater = inflater;
104 return mInflater.inflate(R.layout.contact_detail_updates_fragment, container, false);
StreamItemAdapter.java 45 private final LayoutInflater mInflater;
54 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
99 return mInflater.inflate(R.layout.updates_header_contact, null);
107 mInflater, mContext, convertView, streamItem,
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/
MtpPagerAdapter.java 33 private LayoutInflater mInflater;
43 mInflater = LayoutInflater.from(context);
94 v = (MtpFullscreenView) mInflater.inflate(R.layout.ingest_fullsize, container, false);

Completed in 1211 milliseconds

1 2 3 4 5 6 7