Searched defs:remoteViews (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DRemoteViewsListAdapter.java35 public RemoteViewsListAdapter(Context context, ArrayList<RemoteViews> remoteViews, argument
38 mRemoteViewsList = remoteViews;
43 public void setViewsList(ArrayList<RemoteViews> remoteViews) { argument
44 mRemoteViewsList = remoteViews;
H A DRemoteViewsAdapter.java928 if ((count > 0) && (loadingTemplate.remoteViews == null)) {
962 final RemoteViews remoteViews;
965 remoteViews = factory.getViewAt(position);
968 if (remoteViews == null) {
969 throw new RuntimeException("Null remoteViews");
979 if (remoteViews.mApplication != null) {
980 // We keep track of last application info. This helps when all the remoteViews have
984 && remoteViews.hasSameAppInfo(mLastRemoteViewAppInfo)) {
985 // We should probably also update the remoteViews for nested ViewActions.
987 remoteViews
1240 public final RemoteViews remoteViews; field in class:RemoteViewsAdapter.LoadingViewTemplate
[all...]
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/
H A DTile.java97 public RemoteViews remoteViews; field in class:Tile
134 dest.writeParcelable(remoteViews, flags);
156 remoteViews = in.readParcelable(RemoteViews.class.getClassLoader());
/frameworks/support/browser/src/main/java/androidx/browser/customtabs/
H A DCustomTabsSession.java119 * @param remoteViews The updated {@link RemoteViews} that will be shown in secondary toolbar.
126 public boolean setSecondaryToolbarViews(@Nullable RemoteViews remoteViews, argument
129 bundle.putParcelable(CustomTabsIntent.EXTRA_REMOTEVIEWS, remoteViews);
H A DCustomTabsIntent.java454 * @param remoteViews The {@link RemoteViews} that will be shown on the secondary toolbar.
466 public Builder setSecondaryToolbarViews(@NonNull RemoteViews remoteViews, argument
468 mIntent.putExtra(EXTRA_REMOTEVIEWS, remoteViews);
/frameworks/base/core/java/android/appwidget/
H A DAppWidgetHostView.java376 public void updateAppWidget(RemoteViews remoteViews) { argument
377 applyRemoteViews(remoteViews, true);
383 protected void applyRemoteViews(RemoteViews remoteViews, boolean useAsyncIfPossible) { argument
393 if (remoteViews == null) {
403 inflateAsync(remoteViews);
409 int layoutId = remoteViews.getLayoutId();
415 remoteViews.reapply(mContext, mView, mOnClickHandler);
427 content = remoteViews.apply(mContext, this, mOnClickHandler);
465 private void inflateAsync(RemoteViews remoteViews) { argument
469 int layoutId = remoteViews
[all...]
/frameworks/base/core/java/android/app/
H A DNotification.java5762 * Forces all styled remoteViews to be built from scratch and not use any cached
6518 RemoteViews remoteViews = makeBigContentView();
6521 return remoteViews;
6944 RemoteViews remoteViews = makeMessagingView(true /* displayImagesAtEnd */,
6948 return remoteViews;
7153 RemoteViews remoteViews = makeMessagingView(true /* displayImagesAtEnd */,
7155 remoteViews.setInt(R.id.notification_messaging, "setMaxDisplayedLines", 1);
7156 return remoteViews;
7992 RemoteViews remoteViews = mBuilder.applyStandardTemplateWithActions(
7994 buildIntoRemoteViewContent(remoteViews, headsUpContentVie
8020 buildIntoRemoteViewContent(RemoteViews remoteViews, RemoteViews customContent, TemplateBindResult result) argument
8150 buildIntoRemoteView(RemoteViews remoteViews, int id, RemoteViews customContent) argument
[all...]

Completed in 137 milliseconds