Home
last modified time | relevance | path

Searched refs:mInflater (Results 1 – 25 of 27) sorted by relevance

12

/development/apps/Development/src/com/android/development/
DArrayAdapter.java31 mInflater = (LayoutInflater)context.getSystemService( in ArrayAdapter()
65 view = mInflater.inflate(mLayoutRes, parent, false); in getView()
74 private final LayoutInflater mInflater; field in ArrayAdapter
DAppHwConfigList.java80 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in AppListAdapter()
125 view = mInflater.inflate( in getView()
140 protected final LayoutInflater mInflater; field in AppHwConfigList.AppListAdapter
DRunningProcesses.java79 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in AppListAdapter()
116 view = mInflater.inflate( in getView()
131 protected final LayoutInflater mInflater; field in RunningProcesses.AppListAdapter
DInstrumentationList.java50 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in InstrumentationAdapter()
87 view = mInflater.inflate( in getView()
105 protected final LayoutInflater mInflater; field in InstrumentationAdapter
DPermissionDetails.java61 private LayoutInflater mInflater; field in PermissionDetails
124 convertView = mInflater.inflate(R.layout.pkg_list_item, null); in getView()
192 mInflater = (LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE); in onCreate()
/development/samples/MultiDisplay/src/com/example/android/multidisplay/launcher/
DAppListAdapter.java33 private final LayoutInflater mInflater; field in AppListAdapter
37 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in AppListAdapter()
52 view = mInflater.inflate(R.layout.app_grid_item, parent, false); in getView()
/development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/ui/
DSpeedPickerListAdapter.java36 private final LayoutInflater mInflater; field in SpeedPickerListAdapter
40 mInflater = LayoutInflater.from(context); in SpeedPickerListAdapter()
65 return new ItemViewHolder(mInflater.inflate(R.layout.speed_picker_item_layout, null)); in onCreateViewHolder()
/development/samples/browseable/ShareActionProvider/src/com.example.android.shareactionprovider/
DMainActivity.java96 LayoutInflater mInflater;
117 if (mInflater == null) {
118 mInflater = LayoutInflater.from(MainActivity.this);
128 TextView tv = (TextView) mInflater
140 ImageView iv = (ImageView) mInflater
/development/samples/ApiDemos/src/com/example/android/apis/view/
DList14.java47 private LayoutInflater mInflater; field in List14.EfficientAdapter
53 mInflater = LayoutInflater.from(context); in EfficientAdapter()
106 convertView = mInflater.inflate(R.layout.list_item_icon_text, null); in getView()
DList13.java52 private LayoutInflater mInflater; field in List13.SlowAdapter
55 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in SlowAdapter()
99 … text = (TextView)mInflater.inflate(android.R.layout.simple_list_item_1, parent, false); in getView()
/development/samples/IntentPlayground/src/com/example/android/intentplayground/
DStepAdapter.java39 private LayoutInflater mInflater; field in StepAdapter
49 mInflater = LayoutInflater.from(mContext); in StepAdapter()
68 ViewGroup skeletonLayout = (ViewGroup) mInflater in instantiateItem()
DIntentBuilderView.java66 private LayoutInflater mInflater; field in IntentBuilderView
80 mInflater = LayoutInflater.from(context); in IntentBuilderView()
81 mLayout = (LinearLayout) mInflater.inflate(R.layout.view_build_intent, in IntentBuilderView()
142 LinearLayout actRadio = (LinearLayout) mInflater in setupViews()
177 View categoryLayout = mInflater.inflate(categoryLayoutRes, layout, in fillCheckBoxLayout()
183 View itemLayout = mInflater.inflate(itemLayoutRes, layout, in fillCheckBoxLayout()
/development/samples/browseable/Notifications/Wearable/src/com.example.android.support.wearable.notifications/
DMainActivity.java81 private final LayoutInflater mInflater; field in MainActivity.Adapter
85 mInflater = LayoutInflater.from(context); in Adapter()
91 mInflater.inflate(R.layout.notif_preset_list_item, null)); in onCreateViewHolder()
/development/samples/browseable/BluetoothAdvertisements/src/com.example.android.bluetoothadvertisements/
DScanResultAdapter.java40 private LayoutInflater mInflater; field in ScanResultAdapter
45 mInflater = inflater; in ScanResultAdapter()
69 view = mInflater.inflate(R.layout.listitem_scanresult, null); in getView()
/development/samples/ShortcutDemo/common/src/com/example/android/pm/shortcutdemo/
DShortcutAdapter.java46 private final LayoutInflater mInflater; field in ShortcutAdapter
54 mInflater = mContext.getSystemService(LayoutInflater.class); in ShortcutAdapter()
132 view = mInflater.inflate(getLayoutId(), null); in getView()
/development/samples/browseable/Timer/src/com.example.android.wearable.timer/
DSetTimerActivity.java191 private final LayoutInflater mInflater; field in SetTimerActivity.TimerWearableListViewAdapter
195 mInflater = LayoutInflater.from(context); in TimerWearableListViewAdapter()
201 mInflater.inflate(R.layout.timer_list_item, null)); in onCreateViewHolder()
/development/samples/browseable/WatchFace/Wearable/src/com.example.android.wearable.watchface/
DComplicationSimpleConfigActivity.java153 private final LayoutInflater mInflater; field in ComplicationSimpleConfigActivity.ConfigurationAdapter
159 mInflater = LayoutInflater.from(mContext); in ConfigurationAdapter()
179 mInflater.inflate(R.layout.activity_complication_simple_list_item, null)); in onCreateViewHolder()
/development/samples/Home/src/com/example/android/home/
DApplicationsStackLayout.java66 private LayoutInflater mInflater; field in ApplicationsStackLayout
112 mInflater = LayoutInflater.from(getContext()); in initLayout()
113 mButton = mInflater.inflate(R.layout.all_applications_button, this, false); in initLayout()
252 final View view = createApplicationIcon(mInflater, this, info); in stackApplications()
/development/samples/browseable/AppShortcuts/src/com.example.android.appshortcuts/
DMain.java172 private final LayoutInflater mInflater; field in Main.MyAdapter
177 mInflater = mContext.getSystemService(LayoutInflater.class); in MyAdapter()
221 view = mInflater.inflate(R.layout.list_item, null); in getView()
/development/samples/ShortcutDemo/launcher/src/com/example/android/pm/shortcutlauncherdemo/
DBaseActivityListFragment.java91 private final LayoutInflater mInflater; field in BaseActivityListFragment.AppAdapter
96 mInflater = mContext.getSystemService(LayoutInflater.class); in AppAdapter()
142 view = mInflater.inflate(R.layout.list_item, null); in getView()
/development/samples/ShortcutSample/src/com/example/android/shortcutsample/
DMain.java238 private final LayoutInflater mInflater; field in Main.MyAdapter
243 mInflater = mContext.getSystemService(LayoutInflater.class); in MyAdapter()
287 view = mInflater.inflate(R.layout.list_item, null); in getView()
/development/samples/RSSReader/src/com/example/android/rssreader/
DRssReader.java156 private LayoutInflater mInflater; field in RssReader.RSSListAdapter
161 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in RSSListAdapter()
179 view = (TwoLineListItem) mInflater.inflate(android.R.layout.simple_list_item_2, in getView()
/development/samples/ApiDemos/src/com/example/android/apis/app/
DLoaderCustom.java367 private final LayoutInflater mInflater; field in LoaderCustom.AppListAdapter
371 mInflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in AppListAdapter()
388 view = mInflater.inflate(R.layout.list_item_icon_text, parent, false); in getView()
DPrintCustomContent.java516 private final LayoutInflater mInflater; field in PrintCustomContent.MotoGpStatAdapter
520 mInflater = inflater; in MotoGpStatAdapter()
545 convertView = mInflater.inflate(R.layout.motogp_stat_item, parent, false); in getView()
/development/apps/GestureBuilder/src/com/android/gesture/builder/
DGestureBuilderActivity.java408 private final LayoutInflater mInflater; field in GestureBuilderActivity.GesturesAdapter
414 mInflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE); in GesturesAdapter()
424 convertView = mInflater.inflate(R.layout.gestures_item, parent, false); in getView()

12