blob: e0b08d40d815cfbf7f86af4e1f0a22120b99d9ec [file] [log] [blame]
Winson Chung499cb9f2010-07-16 11:18:17 -07001/*
2 * Copyright (C) 2007 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package android.widget;
18
19import java.util.HashMap;
Winson Chung499cb9f2010-07-16 11:18:17 -070020
21import android.app.Service;
22import android.content.Intent;
23import android.os.IBinder;
Winson Chung499cb9f2010-07-16 11:18:17 -070024
25import com.android.internal.widget.IRemoteViewsFactory;
26
27/**
28 * The service to be connected to for a remote adapter to request RemoteViews. Users should
29 * extend the RemoteViewsService to provide the appropriate RemoteViewsFactory's used to
30 * populate the remote collection view (ListView, GridView, etc).
31 */
32public abstract class RemoteViewsService extends Service {
33
34 private static final String LOG_TAG = "RemoteViewsService";
35
Winson Chung16c8d8a2011-01-20 16:19:33 -080036 // Used for reference counting of RemoteViewsFactories
37 // Because we are now unbinding when we are not using the Service (to allow them to be
38 // reclaimed), the references to the factories that are created need to be stored and used when
39 // the service is restarted (in response to user input for example). When the process is
40 // destroyed, so is this static cache of RemoteViewsFactories.
Winson Chung84bbb022011-02-21 13:57:45 -080041 private static final HashMap<Intent.FilterComparison, RemoteViewsFactory> sRemoteViewFactories =
Winson Chung16c8d8a2011-01-20 16:19:33 -080042 new HashMap<Intent.FilterComparison, RemoteViewsFactory>();
Winson Chung84bbb022011-02-21 13:57:45 -080043 private static final Object sLock = new Object();
Winson Chung499cb9f2010-07-16 11:18:17 -070044
45 /**
46 * An interface for an adapter between a remote collection view (ListView, GridView, etc) and
47 * the underlying data for that view. The implementor is responsible for making a RemoteView
Adam Cohen0e2de6d2011-01-19 17:16:34 -080048 * for each item in the data set. This interface is a thin wrapper around {@link Adapter}.
Winson Chung6394c0e2010-08-16 10:14:56 -070049 *
50 * @see android.widget.Adapter
Winson Chung6eceb00d2010-08-17 18:15:42 -070051 * @see android.appwidget.AppWidgetManager
Winson Chung499cb9f2010-07-16 11:18:17 -070052 */
53 public interface RemoteViewsFactory {
Winson Chung6394c0e2010-08-16 10:14:56 -070054 /**
55 * Called when your factory is first constructed. The same factory may be shared across
56 * multiple RemoteViewAdapters depending on the intent passed.
57 */
Winson Chung499cb9f2010-07-16 11:18:17 -070058 public void onCreate();
Adam Cohen0e2de6d2011-01-19 17:16:34 -080059
Winson Chung6394c0e2010-08-16 10:14:56 -070060 /**
Winson Chung6eceb00d2010-08-17 18:15:42 -070061 * Called when notifyDataSetChanged() is triggered on the remote adapter. This allows a
62 * RemoteViewsFactory to respond to data changes by updating any internal references.
63 *
Adam Cohen0e2de6d2011-01-19 17:16:34 -080064 * Note: expensive tasks can be safely performed synchronously within this method. In the
65 * interim, the old data will be displayed within the widget.
66 *
Winson Chung6eceb00d2010-08-17 18:15:42 -070067 * @see android.appwidget.AppWidgetManager#notifyAppWidgetViewDataChanged(int[], int)
Winson Chung6394c0e2010-08-16 10:14:56 -070068 */
69 public void onDataSetChanged();
Adam Cohen0e2de6d2011-01-19 17:16:34 -080070
Winson Chung6394c0e2010-08-16 10:14:56 -070071 /**
72 * Called when the last RemoteViewsAdapter that is associated with this factory is
73 * unbound.
74 */
Winson Chung499cb9f2010-07-16 11:18:17 -070075 public void onDestroy();
76
Adam Cohen0e2de6d2011-01-19 17:16:34 -080077 /**
78 * See {@link Adapter#getCount()}
79 *
80 * @return Count of items.
81 */
Winson Chung499cb9f2010-07-16 11:18:17 -070082 public int getCount();
Adam Cohen0e2de6d2011-01-19 17:16:34 -080083
84 /**
85 * See {@link Adapter#getView(int, android.view.View, android.view.ViewGroup)}.
86 *
87 * Note: expensive tasks can be safely performed synchronously within this method, and a
88 * loading view will be displayed in the interim. See {@link #getLoadingView()}.
89 *
90 * @param position The position of the item within the Factory's data set of the item whose
91 * view we want.
92 * @return A RemoteViews object corresponding to the data at the specified position.
93 */
Winson Chung499cb9f2010-07-16 11:18:17 -070094 public RemoteViews getViewAt(int position);
Adam Cohen0e2de6d2011-01-19 17:16:34 -080095
96 /**
97 * This allows for the use of a custom loading view which appears between the time that
98 * {@link #getViewAt(int)} is called and returns. If null is returned, a default loading
99 * view will be used.
100 *
101 * @return The RemoteViews representing the desired loading view.
102 */
Winson Chung499cb9f2010-07-16 11:18:17 -0700103 public RemoteViews getLoadingView();
Adam Cohen0e2de6d2011-01-19 17:16:34 -0800104
105 /**
106 * See {@link Adapter#getViewTypeCount()}.
107 *
108 * @return The number of types of Views that will be returned by this factory.
109 */
Winson Chung499cb9f2010-07-16 11:18:17 -0700110 public int getViewTypeCount();
Adam Cohen0e2de6d2011-01-19 17:16:34 -0800111
112 /**
113 * See {@link Adapter#getItemId(int)}.
114 *
115 * @param position The position of the item within the data set whose row id we want.
116 * @return The id of the item at the specified position.
117 */
Winson Chung499cb9f2010-07-16 11:18:17 -0700118 public long getItemId(int position);
Adam Cohen0e2de6d2011-01-19 17:16:34 -0800119
120 /**
121 * See {@link Adapter#hasStableIds()}.
122 *
123 * @return True if the same id always refers to the same object.
124 */
Winson Chung499cb9f2010-07-16 11:18:17 -0700125 public boolean hasStableIds();
126 }
127
128 /**
129 * A private proxy class for the private IRemoteViewsFactory interface through the
130 * public RemoteViewsFactory interface.
131 */
Winson Chung16c8d8a2011-01-20 16:19:33 -0800132 private static class RemoteViewsFactoryAdapter extends IRemoteViewsFactory.Stub {
133 public RemoteViewsFactoryAdapter(RemoteViewsFactory factory, boolean isCreated) {
Winson Chung499cb9f2010-07-16 11:18:17 -0700134 mFactory = factory;
Winson Chung16c8d8a2011-01-20 16:19:33 -0800135 mIsCreated = isCreated;
136 }
137 public synchronized boolean isCreated() {
138 return mIsCreated;
Winson Chung499cb9f2010-07-16 11:18:17 -0700139 }
Winson Chungf58a9612010-09-28 17:36:42 -0700140 public synchronized void onDataSetChanged() {
Winson Chung6394c0e2010-08-16 10:14:56 -0700141 mFactory.onDataSetChanged();
142 }
Winson Chungf58a9612010-09-28 17:36:42 -0700143 public synchronized int getCount() {
Winson Chung499cb9f2010-07-16 11:18:17 -0700144 return mFactory.getCount();
145 }
Winson Chungf58a9612010-09-28 17:36:42 -0700146 public synchronized RemoteViews getViewAt(int position) {
Adam Cohenca6fd842010-09-03 18:10:35 -0700147 RemoteViews rv = mFactory.getViewAt(position);
148 rv.setIsWidgetCollectionChild(true);
149 return rv;
Winson Chung499cb9f2010-07-16 11:18:17 -0700150 }
Winson Chungf58a9612010-09-28 17:36:42 -0700151 public synchronized RemoteViews getLoadingView() {
Winson Chung499cb9f2010-07-16 11:18:17 -0700152 return mFactory.getLoadingView();
153 }
Winson Chungf58a9612010-09-28 17:36:42 -0700154 public synchronized int getViewTypeCount() {
Winson Chung499cb9f2010-07-16 11:18:17 -0700155 return mFactory.getViewTypeCount();
156 }
Winson Chungf58a9612010-09-28 17:36:42 -0700157 public synchronized long getItemId(int position) {
Winson Chung499cb9f2010-07-16 11:18:17 -0700158 return mFactory.getItemId(position);
159 }
Winson Chungf58a9612010-09-28 17:36:42 -0700160 public synchronized boolean hasStableIds() {
Winson Chung499cb9f2010-07-16 11:18:17 -0700161 return mFactory.hasStableIds();
162 }
Winson Chung84bbb022011-02-21 13:57:45 -0800163 public void onDestroy(Intent intent) {
164 synchronized (sLock) {
165 Intent.FilterComparison fc = new Intent.FilterComparison(intent);
166 if (RemoteViewsService.sRemoteViewFactories.containsKey(fc)) {
167 RemoteViewsFactory factory = RemoteViewsService.sRemoteViewFactories.get(fc);
168 factory.onDestroy();
169 RemoteViewsService.sRemoteViewFactories.remove(fc);
170 }
171 }
172 }
Winson Chung499cb9f2010-07-16 11:18:17 -0700173
174 private RemoteViewsFactory mFactory;
Winson Chung16c8d8a2011-01-20 16:19:33 -0800175 private boolean mIsCreated;
Winson Chung499cb9f2010-07-16 11:18:17 -0700176 }
177
178 @Override
179 public IBinder onBind(Intent intent) {
Winson Chung84bbb022011-02-21 13:57:45 -0800180 synchronized (sLock) {
Winson Chung9b3a2cf2010-09-16 14:45:32 -0700181 Intent.FilterComparison fc = new Intent.FilterComparison(intent);
Winson Chung499cb9f2010-07-16 11:18:17 -0700182 RemoteViewsFactory factory = null;
Winson Chung16c8d8a2011-01-20 16:19:33 -0800183 boolean isCreated = false;
Winson Chung84bbb022011-02-21 13:57:45 -0800184 if (!sRemoteViewFactories.containsKey(fc)) {
Winson Chung499cb9f2010-07-16 11:18:17 -0700185 factory = onGetViewFactory(intent);
Winson Chung84bbb022011-02-21 13:57:45 -0800186 sRemoteViewFactories.put(fc, factory);
Winson Chung499cb9f2010-07-16 11:18:17 -0700187 factory.onCreate();
Winson Chung16c8d8a2011-01-20 16:19:33 -0800188 isCreated = false;
Winson Chung499cb9f2010-07-16 11:18:17 -0700189 } else {
Winson Chung84bbb022011-02-21 13:57:45 -0800190 factory = sRemoteViewFactories.get(fc);
Winson Chung16c8d8a2011-01-20 16:19:33 -0800191 isCreated = true;
Winson Chung499cb9f2010-07-16 11:18:17 -0700192 }
Winson Chung16c8d8a2011-01-20 16:19:33 -0800193 return new RemoteViewsFactoryAdapter(factory, isCreated);
Winson Chung499cb9f2010-07-16 11:18:17 -0700194 }
195 }
196
Winson Chung499cb9f2010-07-16 11:18:17 -0700197 /**
198 * To be implemented by the derived service to generate appropriate factories for
199 * the data.
200 */
201 public abstract RemoteViewsFactory onGetViewFactory(Intent intent);
202}