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

1 2 3

  /developers/build/prebuilts/gradle/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/
AppItemListViewAdapter.java 31 private final LayoutInflater mInflater;
36 mInflater = LayoutInflater.from(context);
45 convertView = mInflater.inflate(R.layout.shifted_app_item_layout, parent, false);
ListViewAdapter.java 31 private final LayoutInflater mInflater;
36 mInflater = LayoutInflater.from(context);
45 convertView = mInflater.inflate(R.layout.list_item_layout, parent, false);
MenuRecyclerViewAdapter.java 32 private final LayoutInflater mInflater;
38 mInflater = LayoutInflater.from(context);
46 return new Holder(mInflater.inflate(R.layout.app_item_layout, parent, false));
LongListRecyclerViewAdapter.java 40 private final LayoutInflater mInflater;
50 mInflater = LayoutInflater.from(context);
62 view = mInflater.inflate(R.layout.title_layout, parent, false);
68 view = mInflater.inflate(R.layout.long_list_switch_widget_layout, parent, false);
99 view = mInflater.inflate(R.layout.header_footer_layout, parent, false);
102 view = mInflater.inflate(R.layout.progress_bar_layout, parent, false);
105 view = mInflater.inflate(R.layout.shifted_app_item_layout, parent, false);
108 view = mInflater.inflate(R.layout.shifted_app_item_layout, parent, false);
  /developers/samples/android/wearable/wear/WearAccessibilityApp/Wearable/src/main/java/com/example/android/wearable/wear/wearaccessibilityapp/
AppItemListViewAdapter.java 32 private final LayoutInflater mInflater;
37 mInflater = LayoutInflater.from(context);
46 convertView = mInflater.inflate(R.layout.shifted_app_item_layout, parent, false);
ListViewAdapter.java 32 private final LayoutInflater mInflater;
37 mInflater = LayoutInflater.from(context);
46 convertView = mInflater.inflate(R.layout.list_item_layout, parent, false);
MenuRecyclerViewAdapter.java 33 private final LayoutInflater mInflater;
39 mInflater = LayoutInflater.from(context);
47 return new Holder(mInflater.inflate(R.layout.app_item_layout, parent, false));
LongListRecyclerViewAdapter.java 41 private final LayoutInflater mInflater;
51 mInflater = LayoutInflater.from(context);
63 view = mInflater.inflate(R.layout.title_layout, parent, false);
69 view = mInflater.inflate(R.layout.long_list_switch_widget_layout, parent, false);
100 view = mInflater.inflate(R.layout.header_footer_layout, parent, false);
103 view = mInflater.inflate(R.layout.progress_bar_layout, parent, false);
106 view = mInflater.inflate(R.layout.shifted_app_item_layout, parent, false);
109 view = mInflater.inflate(R.layout.shifted_app_item_layout, 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;
  /development/samples/MultiDisplay/src/com/example/android/multidisplay/launcher/
AppListAdapter.java 33 private final LayoutInflater mInflater;
37 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
52 view = mInflater.inflate(R.layout.app_grid_item, parent, false);
  /external/sl4a/ScriptingLayerForAndroid/src/com/googlecode/android_scripting/
ScriptListAdapter.java 34 protected final LayoutInflater mInflater;
38 mInflater = (LayoutInflater) mContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
62 container = (LinearLayout) mInflater.inflate(R.layout.list_item, null);
  /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);
65 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);
65 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);
65 return new ItemViewHolder(mInflater.inflate(R.layout.speed_picker_item_layout, null));
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/ui/
FullScreenTask.java 49 protected ViewInflater mInflater = new ViewInflater();
72 mInflater.getErrors().clear();
77 mView = mInflater.inflate(getActivity(), xml);
80 mInflater.getErrors().add(e.toString());
82 mInflater.setIdList(R.id.class);
86 mInflater.setClickListener(mView, this, this);
126 return mInflater.getViewAsMap(mView);
131 int id = mInflater.getId(idName);
143 result = mInflater.getViewInfo(v);
150 mInflater.getErrors().clear()
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/tv/
TvAppVerifierActivity.java 36 private LayoutInflater mInflater;
48 mInflater = getLayoutInflater();
50 View view = mInflater.inflate(R.layout.location_mode_main, null);
82 View item = mInflater.inflate(R.layout.tv_item, mItemList, false);
98 View item = mInflater.inflate(R.layout.tv_item, mItemList, false);
114 View item = mInflater.inflate(R.layout.tv_item, mItemList, false);
125 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/IntentPlayground/src/com/example/android/intentplayground/
StepAdapter.java 39 private LayoutInflater mInflater;
49 mInflater = LayoutInflater.from(mContext);
68 ViewGroup skeletonLayout = (ViewGroup) mInflater
  /cts/tests/tests/view/src/android/view/cts/
PrecompiledLayoutTest.java 31 private LayoutInflater mInflater;
36 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
71 mInflater.setPrecompiledLayoutsEnabledForTesting(false);
72 View interpreted = mInflater.inflate(resourceId, null);
75 mInflater.setPrecompiledLayoutsEnabledForTesting(true);
76 View precompiled = mInflater.inflate(resourceId, null);
  /developers/build/prebuilts/gradle/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
ScanResultAdapter.java 40 private LayoutInflater mInflater;
45 mInflater = inflater;
69 view = mInflater.inflate(R.layout.listitem_scanresult, null);
  /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/connectivity/bluetooth/BluetoothAdvertisements/Application/src/main/java/com/example/android/bluetoothadvertisements/
ScanResultAdapter.java 40 private LayoutInflater mInflater;
45 mInflater = inflater;
69 view = mInflater.inflate(R.layout.listitem_scanresult, null);
  /developers/samples/android/deprecated/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));

Completed in 1223 milliseconds

1 2 3