diff options
author | Alan Viverette <alanv@google.com> | 2014-05-20 13:20:42 -0700 |
---|---|---|
committer | Alan Viverette <alanv@google.com> | 2014-05-20 13:20:42 -0700 |
commit | 3b5c4272db3e089c4a06d2db2ddf2aee5ebb6281 (patch) | |
tree | c72df25b9662305e595a99bb89683876571072be /graphics | |
parent | d41b9116800a5f17d2cab3a773c8cf52070fb9fb (diff) | |
download | frameworks_base-3b5c4272db3e089c4a06d2db2ddf2aee5ebb6281.zip frameworks_base-3b5c4272db3e089c4a06d2db2ddf2aee5ebb6281.tar.gz frameworks_base-3b5c4272db3e089c4a06d2db2ddf2aee5ebb6281.tar.bz2 |
Various API review fixes to resources and drawables
BUG: 15025565
Change-Id: If00c85816f8288338967f7a85453d21f858f5ca7
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/java/android/graphics/drawable/Drawable.java | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/graphics/java/android/graphics/drawable/Drawable.java b/graphics/java/android/graphics/drawable/Drawable.java index 3eabc3a..911fb96 100644 --- a/graphics/java/android/graphics/drawable/Drawable.java +++ b/graphics/java/android/graphics/drawable/Drawable.java @@ -512,13 +512,12 @@ public abstract class Drawable { } /** - * Indicates whether this view will change its appearance based on state. - * Clients can use this to determine whether it is necessary to calculate - * their state and call setState. - * - * @return True if this view changes its appearance based on state, false - * otherwise. + * Indicates whether this drawable will change its appearance based on + * state. Clients can use this to determine whether it is necessary to + * calculate their state and call setState. * + * @return True if this drawable changes its appearance based on state, + * false otherwise. * @see #setState(int[]) */ public boolean isStateful() { |