Skip to content

Commit bd1e007

Browse files
author
Adam Cohen
committed
Changing public method to @hide, doesn't have to be public
Change-Id: I4c87b154fd99376a0337f9fc65024e13ddb74da5
1 parent 5ce25d7 commit bd1e007

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

api/current.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28971,7 +28971,6 @@ package android.widget {
2897128971
method public int describeContents();
2897228972
method public int getLayoutId();
2897328973
method public java.lang.String getPackage();
28974-
method public void mergeRemoteViews(android.widget.RemoteViews);
2897528974
method public boolean onLoadClass(java.lang.Class);
2897628975
method public void reapply(android.content.Context, android.view.View);
2897728976
method public void removeAllViews(int);

core/java/android/widget/RemoteViews.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,14 @@ public String getUniqueKey() {
222222
int viewId;
223223
}
224224

225+
/**
226+
* Merges the passed RemoteViews actions with this RemoteViews actions according to
227+
* action-specific merge rules.
228+
*
229+
* @param newRv
230+
*
231+
* @hide
232+
*/
225233
public void mergeRemoteViews(RemoteViews newRv) {
226234
// We first copy the new RemoteViews, as the process of merging modifies the way the actions
227235
// reference the bitmap cache. We don't want to modify the object as it may need to

0 commit comments

Comments
 (0)