Home | History | Annotate | Download | only in widget

Lines Matching refs:factory

55          * Called when your factory is first constructed. The same factory may be shared across
72 * Called when the last RemoteViewsAdapter that is associated with this factory is
90 * @param position The position of the item within the Factory's data set of the item whose
108 * @return The number of types of Views that will be returned by this factory.
133 public RemoteViewsFactoryAdapter(RemoteViewsFactory factory, boolean isCreated) {
134 mFactory = factory;
218 RemoteViewsFactory factory = RemoteViewsService.sRemoteViewFactories.get(fc);
220 factory.onDestroy();
238 RemoteViewsFactory factory = null;
241 factory = onGetViewFactory(intent);
242 sRemoteViewFactories.put(fc, factory);
243 factory.onCreate();
246 factory = sRemoteViewFactories.get(fc);
249 return new RemoteViewsFactoryAdapter(factory, isCreated);