Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 92bff6ee authored by Pierre Barbier de Reuille's avatar Pierre Barbier de Reuille Committed by Android (Google) Code Review
Browse files

Merge "Implementation of go/remoteviews-recycle-added-view." into sc-dev

parents 92b91c0a dc8a5f1a
Loading
Loading
Loading
Loading
+1 −0
Original line number Original line Diff line number Diff line
@@ -54957,6 +54957,7 @@ package android.widget {
    ctor public RemoteViews(@NonNull java.util.Map<android.util.SizeF,android.widget.RemoteViews>);
    ctor public RemoteViews(@NonNull java.util.Map<android.util.SizeF,android.widget.RemoteViews>);
    ctor public RemoteViews(android.widget.RemoteViews);
    ctor public RemoteViews(android.widget.RemoteViews);
    ctor public RemoteViews(android.os.Parcel);
    ctor public RemoteViews(android.os.Parcel);
    method public void addStableView(@IdRes int, @NonNull android.widget.RemoteViews, int);
    method public void addView(@IdRes int, android.widget.RemoteViews);
    method public void addView(@IdRes int, android.widget.RemoteViews);
    method public android.view.View apply(android.content.Context, android.view.ViewGroup);
    method public android.view.View apply(android.content.Context, android.view.ViewGroup);
    method @Deprecated public android.widget.RemoteViews clone();
    method @Deprecated public android.widget.RemoteViews clone();
+293 −24

File changed.

Preview size limit exceeded, changes collapsed.

+6 −0
Original line number Original line Diff line number Diff line
@@ -247,4 +247,10 @@


  <!-- Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_IME_ENTER}. -->
  <!-- Accessibility action identifier for {@link android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction#ACTION_IME_ENTER}. -->
  <item type="id" name="accessibilityActionImeEnter" />
  <item type="id" name="accessibilityActionImeEnter" />

  <!-- View tag for remote views to store the index of the next child when adding nested remote views dynamically. -->
  <item type="id" name="remote_views_next_child" />

  <!-- View tag associating a view with its stable id for potential recycling. -->
  <item type="id" name = "remote_views_stable_id" />
</resources>
</resources>
+3 −0

File changed.

Preview size limit exceeded, changes collapsed.