diff options
| author | 2020-01-24 03:55:34 +0000 | |
|---|---|---|
| committer | 2020-01-24 03:55:34 +0000 | |
| commit | fc6d7d2931a05b3ec711c88171e4e26edd2d680c (patch) | |
| tree | a4296e465b29dfccd5fc374b074ef9f6580e837d | |
| parent | 5f19eb15fdf32cc3a33d8e8d84e09ee5964cd12a (diff) | |
| parent | db2bb3e12af57baa008e128cc38765e369727083 (diff) | |
Merge "Fix docs error"
| -rw-r--r-- | core/java/android/view/View.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 0f2d2c21d28d..c5f4faf2f462 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -3659,8 +3659,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * * @deprecated For floating windows, use {@link LayoutParams#setFitInsetsTypes(int)} with * {@link Type#navigationBars()}. For non-floating windows that fill the screen, call - * {@link Window#setOnContentApplyWindowInsets} with {@code null} or a listener that doesn't - * fit the navigation bar on the window content level. + * {@link Window#setOnContentApplyWindowInsetsListener} with {@code null} or a listener that + * doesn't fit the navigation bar on the window content level. */ public static final int SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION = 0x00000200; @@ -3688,8 +3688,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * * @deprecated For floating windows, use {@link LayoutParams#setFitInsetsTypes(int)} with * {@link Type#statusBars()} ()}. For non-floating windows that fill the screen, call - * {@link Window#setOnContentApplyWindowInsets} with {@code null} or a listener that doesn't - * fit the status bar on the window content level. + * {@link Window#setOnContentApplyWindowInsetsListener} with {@code null} or a listener that + * doesn't fit the status bar on the window content level. */ @Deprecated public static final int SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN = 0x00000400; |