Searched refs:RemoteViews (Results 1 - 25 of 54) sorted by relevance

123

/frameworks/base/core/java/android/widget/
H A DRemoteViews.aidl19 parcelable RemoteViews;
H A DRemoteViewsService.java28 * The service to be connected to for a remote adapter to request RemoteViews. Users should
92 * @return A RemoteViews object corresponding to the data at the specified position.
94 public RemoteViews getViewAt(int position);
101 * @return The RemoteViews representing the desired loading view.
103 public RemoteViews getLoadingView();
161 public synchronized RemoteViews getViewAt(int position) {
162 RemoteViews rv = null;
174 public synchronized RemoteViews getLoadingView() {
175 RemoteViews rv = null;
H A DButton.java23 import android.widget.RemoteViews.RemoteView;
H A DRemoteViewsAdapter.java39 import android.widget.RemoteViews.OnClickHandler;
45 * An adapter to a RemoteViewsService which fetches and caches RemoteViews
80 // The set of requested views that are to be notified when the associated RemoteViews are
269 * A FrameLayout which contains a loading view, and manages the re/applying of RemoteViews when
279 * @param view the RemoteViews that was loaded. If null, the RemoteViews was not loaded
282 public void onRemoteViewsLoaded(RemoteViews view, OnClickHandler handler) {
288 Log.e(TAG, "Failed to apply RemoteViews.");
295 * adapter that have not yet had their RemoteViews loaded.
325 * the associated RemoteViews ha
[all...]
H A DRemoteViews.java63 public class RemoteViews implements Parcelable, Filter { class in inherits:Parcelable,Filter
65 private static final String LOG_TAG = "RemoteViews";
98 * A class to keep track of memory usage by this RemoteViews
108 * Indicates whether or not this RemoteViews object is contained as a child of any other
109 * RemoteViews.
114 * Constants to whether or not this RemoteViews is composed of a landscape and portrait
115 * RemoteViews.
122 * {@link #RemoteViews(RemoteViews, RemoteViews)} t
1446 public RemoteViews(String packageName, int layoutId) { method in class:RemoteViews
1472 public RemoteViews(RemoteViews landscape, RemoteViews portrait) { method in class:RemoteViews
1500 public RemoteViews(Parcel parcel) { method in class:RemoteViews
1504 private RemoteViews(Parcel parcel, BitmapCache bitmapCache) { method in class:RemoteViews
[all...]
H A DImageButton.java26 import android.widget.RemoteViews.RemoteView;
/frameworks/base/core/java/com/android/internal/widget/
H A DIRemoteViewsFactory.aidl20 import android.widget.RemoteViews;
28 RemoteViews getViewAt(int position);
29 RemoteViews getLoadingView();
/frameworks/base/core/java/com/android/internal/appwidget/
H A DIAppWidgetHost.aidl21 import android.widget.RemoteViews;
25 void updateAppWidget(int appWidgetId, in RemoteViews views);
H A DIAppWidgetService.aidl25 import android.widget.RemoteViews;
34 out List<RemoteViews> updatedViews);
40 RemoteViews getAppWidgetViews(int appWidgetId);
45 void updateAppWidgetIds(in int[] appWidgetIds, in RemoteViews views);
48 void partiallyUpdateAppWidgetIds(in int[] appWidgetIds, in RemoteViews views);
49 void updateAppWidgetProvider(in ComponentName provider, in RemoteViews views);
/frameworks/base/tests/appwidgets/AppWidgetHostTest/src/com/android/tests/appwidgethost/
H A DTestAppWidgetProvider.java28 import android.widget.RemoteViews;
58 RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.test_appwidget);
/frameworks/base/tests/appwidgets/AppWidgetProviderTest/src/com/android/tests/appwidgetprovider/
H A DTestAppWidgetProvider.java27 import android.widget.RemoteViews;
50 RemoteViews views = new RemoteViews(context.getPackageName(), R.layout.test_appwidget);
/frameworks/support/v4/honeycomb/android/support/v4/app/
H A DNotificationCompatHoneycomb.java23 import android.widget.RemoteViews;
28 RemoteViews tickerView, int number,
/frameworks/support/v4/ics/android/support/v4/app/
H A DNotificationCompatIceCreamSandwich.java23 import android.widget.RemoteViews;
28 RemoteViews tickerView, int number,
/frameworks/base/core/java/android/app/
H A DNotification.java40 import android.widget.RemoteViews;
190 public RemoteViews tickerView;
195 public RemoteViews contentView;
202 public RemoteViews bigContentView;
563 tickerView = RemoteViews.CREATOR.createFromParcel(parcel);
566 contentView = RemoteViews.CREATOR.createFromParcel(parcel);
598 bigContentView = RemoteViews.CREATOR.createFromParcel(parcel);
804 RemoteViews contentView = new RemoteViews(context.getPackageName(),
948 private RemoteViews mContentVie
[all...]
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHost.java35 import android.widget.RemoteViews;
36 import android.widget.RemoteViews.OnClickHandler;
60 public void updateAppWidget(int appWidgetId, RemoteViews views) {
101 updateAppWidgetView(msg.arg1, (RemoteViews)msg.obj);
158 ArrayList<RemoteViews> updatedViews = new ArrayList<RemoteViews>();
316 RemoteViews views;
370 void updateAppWidgetView(int appWidgetId, RemoteViews views) {
H A DAppWidgetManager.java28 import android.widget.RemoteViews;
344 * Set the RemoteViews to use for the specified appWidgetIds.
346 * Note that the RemoteViews parameter will be cached by the AppWidgetService, and hence should
348 * {@link #partiallyUpdateAppWidget(int[], RemoteViews)}.
356 * The total Bitmap memory used by the RemoteViews object cannot exceed that required to
359 * @param appWidgetIds The AppWidget instances for which to set the RemoteViews.
360 * @param views The RemoteViews object to show.
362 public void updateAppWidget(int[] appWidgetIds, RemoteViews views) {
379 * @param appWidgetId The AppWidget instances for which to set the RemoteViews.
399 * @param appWidgetId The AppWidget instances for which to set the RemoteViews
[all...]
H A DAppWidgetHostView.java46 import android.widget.RemoteViews;
47 import android.widget.RemoteViews.OnClickHandler;
54 * {@link RemoteViews}.
69 // views that are allowed in RemoteViews.
72 return clazz.isAnnotationPresent(RemoteViews.RemoteView.class);
106 * {@link #updateAppWidget(RemoteViews)}.
122 * Pass the given handler to RemoteViews when updating this widget. Unless this
123 * is done immediatly after construction, a call to {@link #updateAppWidget(RemoteViews)}
334 * Process a set of {@link RemoteViews} coming in as an update from the
337 public void updateAppWidget(RemoteViews remoteView
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
H A DIntruderAlertView.java38 import android.widget.RemoteViews;
57 private RemoteViews mIntruderRemoteViews;
147 public void applyIntruderContent(RemoteViews intruderView, OnClickListener listener) {
H A DEventHole.java38 import android.widget.RemoteViews.RemoteView;
/frameworks/support/v4/jellybean/android/support/v4/app/
H A DNotificationCompatJellybean.java23 import android.widget.RemoteViews;
30 RemoteViews tickerView, int number,
/frameworks/base/tests/StatusBar/src/com/android/statusbartest/
H A DTestActivity.java32 import android.widget.RemoteViews;
H A DToastTest.java31 import android.widget.RemoteViews;
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
H A DAnimatedImageView.java26 import android.widget.RemoteViews.RemoteView;
/frameworks/base/services/java/com/android/server/
H A DAppWidgetService.java34 import android.widget.RemoteViews;
194 List<RemoteViews> updatedViews) throws RemoteException {
256 public RemoteViews getAppWidgetViews(int appWidgetId) throws RemoteException {
283 public void partiallyUpdateAppWidgetIds(int[] appWidgetIds, RemoteViews views)
301 public void updateAppWidgetIds(int[] appWidgetIds, RemoteViews views) throws RemoteException {
306 public void updateAppWidgetProvider(ComponentName provider, RemoteViews views)
/frameworks/support/v4/java/android/support/v4/app/
H A DNotificationCompat.java27 import android.widget.RemoteViews;
173 RemoteViews mTickerView;
196 * RemoteViews. The Context will not be held past the lifetime of this
317 * Supply a custom RemoteViews to use instead of the standard one.
319 public Builder setContent(RemoteViews views) {
327 * views to be launched when clicked by calling {@link RemoteViews#setOnClickPendingIntent
328 * RemoteViews.setOnClickPendingIntent(int,PendingIntent)}. Be sure to
379 * arrives, and also a RemoteViews object that may be displayed instead on some
382 public Builder setTicker(CharSequence tickerText, RemoteViews views) {

Completed in 1579 milliseconds

123