diff options
Diffstat (limited to 'core/java/android/view')
-rw-r--r-- | core/java/android/view/SurfaceHolder.java | 6 | ||||
-rw-r--r-- | core/java/android/view/View.java | 2 | ||||
-rw-r--r-- | core/java/android/view/ViewGroup.java | 2 | ||||
-rw-r--r-- | core/java/android/view/textservice/TextServicesManager.java | 8 |
4 files changed, 9 insertions, 9 deletions
diff --git a/core/java/android/view/SurfaceHolder.java b/core/java/android/view/SurfaceHolder.java index 2a16725..015a78e 100644 --- a/core/java/android/view/SurfaceHolder.java +++ b/core/java/android/view/SurfaceHolder.java @@ -155,7 +155,7 @@ public interface SurfaceHolder { /** * Make the surface a fixed size. It will never change from this size. - * When working with a {link SurfaceView}, this must be called from the + * When working with a {@link SurfaceView}, this must be called from the * same thread running the SurfaceView's window. * * @param width The surface's width. @@ -167,14 +167,14 @@ public interface SurfaceHolder { * Allow the surface to resized based on layout of its container (this is * the default). When this is enabled, you should monitor * {@link Callback#surfaceChanged} for changes to the size of the surface. - * When working with a {link SurfaceView}, this must be called from the + * When working with a {@link SurfaceView}, this must be called from the * same thread running the SurfaceView's window. */ public void setSizeFromLayout(); /** * Set the desired PixelFormat of the surface. The default is OPAQUE. - * When working with a {link SurfaceView}, this must be called from the + * When working with a {@link SurfaceView}, this must be called from the * same thread running the SurfaceView's window. * * @param format A constant from PixelFormat. diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index b1caa2f..f0ca302 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -2362,7 +2362,7 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal * with a stable layout. (Note that you should avoid using * {@link #SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION} by itself.) * - * If you have set the window flag {@ WindowManager.LayoutParams#FLAG_FULLSCREEN} + * If you have set the window flag {@link WindowManager.LayoutParams#FLAG_FULLSCREEN} * to hide the status bar (instead of using {@link #SYSTEM_UI_FLAG_FULLSCREEN}), * then a hidden status bar will be considered a "stable" state for purposes * here. This allows your UI to continually hide the status bar, while still diff --git a/core/java/android/view/ViewGroup.java b/core/java/android/view/ViewGroup.java index 6ec0955..0c83a73 100644 --- a/core/java/android/view/ViewGroup.java +++ b/core/java/android/view/ViewGroup.java @@ -5206,7 +5206,7 @@ public abstract class ViewGroup extends View implements ViewParent, ViewManager } /** - * If {link #addStatesFromChildren} is true, refreshes this group's + * If {@link #addStatesFromChildren} is true, refreshes this group's * drawable state (to include the states from its children). */ public void childDrawableStateChanged(View child) { diff --git a/core/java/android/view/textservice/TextServicesManager.java b/core/java/android/view/textservice/TextServicesManager.java index 161e8fb..81b36db 100644 --- a/core/java/android/view/textservice/TextServicesManager.java +++ b/core/java/android/view/textservice/TextServicesManager.java @@ -91,11 +91,11 @@ public final class TextServicesManager { /** * Get a spell checker session for the specified spell checker - * @param locale the locale for the spell checker. If {@param locale} is null and + * @param locale the locale for the spell checker. If {@code locale} is null and * referToSpellCheckerLanguageSettings is true, the locale specified in Settings will be - * returned. If {@param locale} is not null and referToSpellCheckerLanguageSettings is true, - * the locale specified in Settings will be returned only when it is same as {@param locale}. - * Exceptionally, when referToSpellCheckerLanguageSettings is true and {@param locale} is + * returned. If {@code locale} is not null and referToSpellCheckerLanguageSettings is true, + * the locale specified in Settings will be returned only when it is same as {@code locale}. + * Exceptionally, when referToSpellCheckerLanguageSettings is true and {@code locale} is * only language (e.g. "en"), the specified locale in Settings (e.g. "en_US") will be * selected. * @param listener a spell checker session lister for getting results from a spell checker. |