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

1 2 3 4

  /frameworks/base/core/java/android/widget/
ResourceCursorAdapter.java 35 private LayoutInflater mInflater;
49 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
68 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
79 return mInflater.inflate(mLayout, parent, false);
84 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,
SimpleExpandableListAdapter.java 52 private LayoutInflater mInflater;
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/base/core/java/android/view/
ContextThemeWrapper.java 31 private LayoutInflater mInflater;
68 if (mInflater == null) {
69 mInflater = LayoutInflater.from(mBase).cloneInContext(this);
71 return mInflater;
  /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;
AppHwConfigList.java 80 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
125 view = mInflater.inflate(
140 protected final LayoutInflater mInflater;
InstrumentationList.java 49 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
86 view = mInflater.inflate(
104 protected final LayoutInflater mInflater;
RunningProcesses.java 79 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
116 view = mInflater.inflate(
131 protected 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);
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);
  /packages/apps/Launcher2/src/com/android/launcher2/
LauncherAppWidgetHostView.java 36 private LayoutInflater mInflater;
40 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
45 return mInflater.inflate(R.layout.appwidget_error, this, false);
ShortcutsAdapter.java 35 private final LayoutInflater mInflater;
40 mInflater = LayoutInflater.from(context);
49 convertView = mInflater.inflate(R.layout.application_boxed, parent, false);
AddAdapter.java 37 private final LayoutInflater mInflater;
68 mInflater = (LayoutInflater) launcher.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
91 convertView = mInflater.inflate(R.layout.add_list_item, parent, false);
  /packages/apps/Mms/src/com/android/mms/ui/
IconListAdapter.java 36 protected LayoutInflater mInflater;
42 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
52 view = mInflater.inflate(mResource, 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);
  /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);
List13.java 52 private LayoutInflater mInflater;
56 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
100 text = (TextView)mInflater.inflate(android.R.layout.simple_list_item_1, 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/Settings/src/com/android/settings/
MasterClear.java 42 private LayoutInflater mInflater;
125 mFinalView = mInflater.inflate(R.layout.master_clear_final, null);
148 mInitialView = mInflater.inflate(R.layout.master_clear_primary, null);
173 mInflater = LayoutInflater.from(this);
MediaFormat.java 40 private LayoutInflater mInflater;
113 mFinalView = mInflater.inflate(R.layout.media_format_final, null);
136 mInitialView = mInflater.inflate(R.layout.media_format_primary, null);
151 mInflater = LayoutInflater.from(this);
  /packages/apps/Contacts/src/com/android/contacts/
ScrollingTabWidget.java 47 private LayoutInflater mInflater;
63 mInflater = (LayoutInflater) mContext.getSystemService(
72 mLeftArrowView = (ImageView) mInflater.inflate(R.layout.tab_left_arrow, this, false);
74 mRightArrowView = (ImageView) mInflater.inflate(R.layout.tab_right_arrow, this, false);
76 mTabsScrollWrapper = (HorizontalScrollView) mInflater.inflate(
79 View accountNameView = mInflater.inflate(R.layout.tab_account_name, this, false);
248 addTab(mInflater.inflate(layoutResId, mTabsView, false));
  /frameworks/base/core/tests/coretests/src/android/widget/gridview/
GridThrasher.java 53 private LayoutInflater mInflater;
66 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
93 view = (TextView) mInflater.inflate(android.R.layout.simple_list_item_1, null);
  /frameworks/base/core/java/android/accounts/
GrantCredentialsPermissionActivity.java 48 protected LayoutInflater mInflater;
55 mInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
100 View view = mInflater.inflate(R.layout.permissions_package_list_item, null);
  /frameworks/base/core/java/android/text/method/
CharacterPickerDialog.java 46 private LayoutInflater mInflater;
63 mInflater = LayoutInflater.from(context);
124 mInflater.inflate(R.layout.character_picker_button, null);

Completed in 185 milliseconds

1 2 3 4