summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Craik <ccraik@google.com>2014-05-28 00:08:58 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-05-28 00:08:58 +0000
commitddce68996b8a37e49091a22d3320039c8488d7cc (patch)
treedc2d2b1196c9d91fec4ae3bb7aa6765600e87efa
parent79458826c6a9da57a296af6c75ee02fd8f3ef631 (diff)
parent67c360f3d52e705258182dbc448ef528599482fa (diff)
downloadframeworks_base-ddce68996b8a37e49091a22d3320039c8488d7cc.zip
frameworks_base-ddce68996b8a37e49091a22d3320039c8488d7cc.tar.gz
frameworks_base-ddce68996b8a37e49091a22d3320039c8488d7cc.tar.bz2
Merge "Update docs around empty/null outline behavior" into lmp-preview-dev
-rw-r--r--core/java/android/view/View.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java
index 0f21c1d..025cf69 100644
--- a/core/java/android/view/View.java
+++ b/core/java/android/view/View.java
@@ -10687,8 +10687,8 @@ public class View implements Drawable.Callback, KeyEvent.Callback,
* {@link Drawable#getOutline(Outline)}. Manually setting the Outline with this method allows
* this behavior to be overridden.
* <p>
- * If the outline is empty or is null, shadows will be cast from the
- * bounds of the View.
+ * If the outline is {@link Outline#isEmpty()} or is <code>null</code>,
+ * shadows will not be cast.
* <p>
* Only outlines that return true from {@link Outline#canClip()} may be used for clipping.
*