Skip to content

Commit 8562cb5

Browse files
Adam CohenAndroid (Google) Code Review
authored andcommitted
Merge "Changing public method to @hide, doesn't have to be public" into jb-mr1-dev
2 parents 38533ea + bd1e007 commit 8562cb5

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
@@ -29005,7 +29005,6 @@ package android.widget {
2900529005
method public int describeContents();
2900629006
method public int getLayoutId();
2900729007
method public java.lang.String getPackage();
29008-
method public void mergeRemoteViews(android.widget.RemoteViews);
2900929008
method public boolean onLoadClass(java.lang.Class);
2901029009
method public void reapply(android.content.Context, android.view.View);
2901129010
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)