am 327074dc: am bcbb9f0b: am fdc56cc0: Merge "Add a method to get the status bar background drawable" into lmp-mr1-dev
* commit '327074dc5399dd82b7cfa9ed381b08008302adf7':
Add a method to get the status bar background drawable
diff --git a/v4/java/android/support/v4/widget/DrawerLayout.java b/v4/java/android/support/v4/widget/DrawerLayout.java
index fcb27f6..65f4edf 100644
--- a/v4/java/android/support/v4/widget/DrawerLayout.java
+++ b/v4/java/android/support/v4/widget/DrawerLayout.java
@@ -1010,6 +1010,15 @@
}
/**
+ * Gets the drawable used to draw in the insets area for the status bar.
+ *
+ * @return The status bar background drawable, or null if none set
+ */
+ public Drawable getStatusBarBackgroundDrawable() {
+ return mStatusBarBackground;
+ }
+
+ /**
* Set a drawable to draw in the insets area for the status bar.
* Note that this will only be activated if this DrawerLayout fitsSystemWindows.
*