diff --git a/docs/html/tools/support-library/index.jd b/docs/html/tools/support-library/index.jd index 4ee8c1289fc5e..dba4e7404151c 100644 --- a/docs/html/tools/support-library/index.jd +++ b/docs/html/tools/support-library/index.jd @@ -62,6 +62,58 @@ page.title=Support Library

Android Support Library, revision 19 (October 2013) +

+
+
+
Changes for v4 support library:
+
+
    +
  • Added support for external Storage APIs with the + {@link android.support.v4.content.ContextCompat#getObbDirs getObbDirs()}, + {@link android.support.v4.content.ContextCompat#getExternalFilesDirs getExternalFilesDirs()}, + {@link android.support.v4.content.ContextCompat#getExternalCacheDirs getExternalCacheDirs()}, + and {@link android.support.v4.os.EnvironmentCompat#getStorageState getStorageState()}. + These helper methods always return a single file object on devices running Android + 4.3 (API level 18) and earlier. When running on Android 4.4 (API level 19) and higher, + these methods may return more than one file object.
  • +
  • Added {@link android.support.v4.print.PrintHelper} class that works with the + Print APIs to print images with a minimum of code.
  • +
  • Added drag-to-open user interface support for pop-up menus. For more information, see + {@link android.support.v4.widget.PopupMenuCompat} and + {@link android.support.v4.widget.ListPopupWindowCompat}.
  • +
  • Improved accessibility support with the addition of a + {@link android.support.v4.view.accessibility.AccessibilityNodeProviderCompat#findFocus + findFocus()} method in + {@link android.support.v4.view.accessibility.AccessibilityNodeProviderCompat} and the + {@link android.support.v4.view.accessibility.AccessibilityNodeInfoCompat#getLiveRegion + getLiveRegion()} method in + {@link android.support.v4.view.accessibility.AccessibilityNodeInfoCompat}.
  • +
  • Added helper class {@link android.support.v4.view.ScaleGestureDetectorCompat} for + accessing new scaling gesture methods.
  • +
  • Fixed problem with {@link android.support.v4.app.ActionBarDrawerToggle} in + right-to-left language displays.
  • +
  • Modified {@link android.support.v4.widget.AutoScrollHelper} option to consume + touch events or allow them to be passed through to other views.
  • +
+
+ +
Changes for v7 mediarouter library:
+
+
    +
  • Added support for media playback queuing, setting HTTP header values and media + playback duration.
  • +
  • Added explicit start, get, and end session actions for explicitly managing media + playback sessions with media router.
  • +
+
+
+
+
+ +
+

+ Android Support Library, revision 18 (July 2013)