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

1 2

  /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 50 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
87 view = mInflater.inflate(
105 protected final LayoutInflater mInflater;
RunningProcesses.java 79 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
116 view = mInflater.inflate(
131 protected final LayoutInflater mInflater;
PermissionDetails.java 61 private LayoutInflater mInflater;
124 convertView = mInflater.inflate(R.layout.pkg_list_item, null);
192 mInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
  /external/chromium_org/remoting/android/java/src/org/chromium/chromoting/
AccountsAdapter.java 17 private LayoutInflater mInflater;
24 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
29 View view = mInflater.inflate(R.layout.account_selected, parent, false);
38 TextView view = (TextView) mInflater.inflate(R.layout.account_dropdown, parent, false);
  /external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
AddressWidgetUiComponentProvider.java 41 protected LayoutInflater mInflater;
45 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
56 TextView textView = (TextView) mInflater.inflate(R.layout.address_textview, null, false);
68 return (EditText) mInflater.inflate(R.layout.address_edittext, null, false);
78 return (Spinner) mInflater.inflate(R.layout.address_spinner, null, false);
  /developers/build/prebuilts/gradle/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerListAdapter.java 36 private final LayoutInflater mInflater;
40 mInflater = LayoutInflater.from(context);
62 return new ItemViewHolder(mInflater.inflate(R.layout.speed_picker_item_layout, null));
  /developers/samples/android/wearable/wear/SpeedTracker/Wearable/src/main/java/com/example/android/wearable/speedtracker/ui/
SpeedPickerListAdapter.java 36 private final LayoutInflater mInflater;
40 mInflater = LayoutInflater.from(context);
62 return new ItemViewHolder(mInflater.inflate(R.layout.speed_picker_item_layout, null));
  /development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/ui/
SpeedPickerListAdapter.java 36 private final LayoutInflater mInflater;
40 mInflater = LayoutInflater.from(context);
62 return new ItemViewHolder(mInflater.inflate(R.layout.speed_picker_item_layout, null));
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/share/
ShareDialogAdapter.java 28 private final LayoutInflater mInflater;
38 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
46 view = mInflater.inflate(R.layout.share_dialog_item, parent, false);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
TvAppVerifierActivity.java 40 private LayoutInflater mInflater;
52 mInflater = getLayoutInflater();
54 View view = mInflater.inflate(R.layout.location_mode_main, null);
87 View item = mInflater.inflate(R.layout.tv_item, mItemList, false);
103 View item = mInflater.inflate(R.layout.tv_item, mItemList, false);
  /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);
  /development/samples/ActionBarCompat/src/com/example/android/actionbarcompat/
ActionBarHelperBase.java 233 MenuInflater mInflater;
237 mInflater = inflater;
243 mInflater.inflate(menuRes, menu);
  /developers/build/prebuilts/gradle/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java 81 private final LayoutInflater mInflater;
85 mInflater = LayoutInflater.from(context);
91 mInflater.inflate(R.layout.notif_preset_list_item, null));
  /developers/demos/JustForUs/justforus/src/main/java/com/example/android/justforus/
MainActivity.java 155 private LayoutInflater mInflater;
169 mInflater = inflater;
191 result = mInflater.inflate(R.layout.grid_item, parent, false);
  /developers/samples/android/wearable/wear/Notifications/Wearable/src/main/java/com/example/android/support/wearable/notifications/
MainActivity.java 81 private final LayoutInflater mInflater;
85 mInflater = LayoutInflater.from(context);
91 mInflater.inflate(R.layout.notif_preset_list_item, null));
  /development/samples/ApiDemos/src/com/example/android/apis/app/
PrintCustomContent.java 516 private final LayoutInflater mInflater;
520 mInflater = inflater;
545 convertView = mInflater.inflate(R.layout.motogp_stat_item, parent, false);
  /development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
MainActivity.java 81 private final LayoutInflater mInflater;
85 mInflater = LayoutInflater.from(context);
91 mInflater.inflate(R.layout.notif_preset_list_item, null));
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
AppMenuAdapter.java 80 private final LayoutInflater mInflater;
90 mInflater = inflater;
150 convertView = mInflater.inflate(R.layout.menu_item, parent, false);
184 convertView = mInflater.inflate(R.layout.two_button_menu_item, parent, false);
208 convertView = mInflater.inflate(R.layout.three_button_menu_item, parent, false);
234 convertView = mInflater.inflate(R.layout.four_button_menu_item, parent, false);
263 convertView = mInflater.inflate(R.layout.title_button_menu_item, parent, false);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/
LocationModeTestActivity.java 54 private LayoutInflater mInflater;
68 mInflater = getLayoutInflater();
69 View view = mInflater.inflate(R.layout.location_mode_main, null);
113 View item = mInflater.inflate(R.layout.location_mode_item, mItemList, false);
125 View item = mInflater.inflate(R.layout.location_mode_item, mItemList, false);
  /developers/build/prebuilts/gradle/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
SetTimerActivity.java 191 private final LayoutInflater mInflater;
195 mInflater = LayoutInflater.from(context);
201 mInflater.inflate(R.layout.timer_list_item, null));
  /developers/samples/android/ui/actionbarcompat/ActionBarCompat-SearchView/src/main/src/com/example/android/actionbarcompat/searchview/
AppListFragment.java 114 private final LayoutInflater mInflater;
117 mInflater = LayoutInflater.from(getActivity());
138 convertView = mInflater.inflate(R.layout.list_item, parent, false);
  /developers/samples/android/wearable/wear/Timer/Wearable/src/main/java/com/example/android/wearable/timer/
SetTimerActivity.java 191 private final LayoutInflater mInflater;
195 mInflater = LayoutInflater.from(context);
201 mInflater.inflate(R.layout.timer_list_item, null));

Completed in 413 milliseconds

1 2