summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorAlan Viverette <alanv@google.com>2014-10-29 22:05:09 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2014-10-29 22:05:11 +0000
commit2d3443fc5a6cf0830edd6a498a87760143dbc570 (patch)
treef5a5f96fdd0a3bd7f278714c7e5294367ed0a6ae /core
parent66c0adcfd4351518512df2f3e81526d2d67d6d65 (diff)
parent79c067c54a944660438c81ac2caf37ec68eedfa9 (diff)
downloadframeworks_base-2d3443fc5a6cf0830edd6a498a87760143dbc570.zip
frameworks_base-2d3443fc5a6cf0830edd6a498a87760143dbc570.tar.gz
frameworks_base-2d3443fc5a6cf0830edd6a498a87760143dbc570.tar.bz2
Merge "Add setters for window elevation and clipToOutline properties" into lmp-mr1-dev
Diffstat (limited to 'core')
-rw-r--r--core/java/android/view/Window.java29
1 files changed, 24 insertions, 5 deletions
diff --git a/core/java/android/view/Window.java b/core/java/android/view/Window.java
index 20edeb8..0076abf 100644
--- a/core/java/android/view/Window.java
+++ b/core/java/android/view/Window.java
@@ -1074,17 +1074,36 @@ public abstract class Window {
public abstract void onConfigurationChanged(Configuration newConfig);
/**
+ * Sets the window elevation.
+ *
+ * @param elevation The window elevation.
+ * @see View#setElevation(float)
+ * @see android.R.styleable#Window_windowElevation
+ */
+ public void setElevation(float elevation) {}
+
+ /**
+ * Sets whether window content should be clipped to the outline of the
+ * window background.
+ *
+ * @param clipToOutline Whether window content should be clipped to the
+ * outline of the window background.
+ * @see View#setClipToOutline(boolean)
+ * @see android.R.styleable#Window_windowClipToOutline
+ */
+ public void setClipToOutline(boolean clipToOutline) {}
+
+ /**
* Change the background of this window to a Drawable resource. Setting the
* background to null will make the window be opaque. To make the window
* transparent, you can use an empty drawable (for instance a ColorDrawable
* with the color 0 or the system drawable android:drawable/empty.)
*
- * @param resid The resource identifier of a drawable resource which will be
- * installed as the new background.
+ * @param resId The resource identifier of a drawable resource which will
+ * be installed as the new background.
*/
- public void setBackgroundDrawableResource(int resid)
- {
- setBackgroundDrawable(mContext.getDrawable(resid));
+ public void setBackgroundDrawableResource(int resId) {
+ setBackgroundDrawable(mContext.getDrawable(resId));
}
/**