Fix missing @hide on ViewGroup.resolveLayoutParams()
- as we dont need this to be public Change-Id: Ib8de262eec26d4785b13875d59599369b06a067d
This commit is contained in:
@@ -25642,7 +25642,6 @@ package android.view {
|
||||
method public void requestDisallowInterceptTouchEvent(boolean);
|
||||
method public boolean requestSendAccessibilityEvent(android.view.View, android.view.accessibility.AccessibilityEvent);
|
||||
method public void requestTransparentRegion(android.view.View);
|
||||
method public void resolveLayoutParams();
|
||||
method public void scheduleLayoutAnimation();
|
||||
method public void setAddStatesFromChildren(boolean);
|
||||
method public void setAlwaysDrawnWithCacheEnabled(boolean);
|
||||
|
||||
@@ -5358,6 +5358,9 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @hide
|
||||
*/
|
||||
@Override
|
||||
public void resolveLayoutParams() {
|
||||
super.resolveLayoutParams();
|
||||
|
||||
Reference in New Issue
Block a user