From 41ad895f389dedae01cf516335ca55857ce90950 Mon Sep 17 00:00:00 2001
From: Joe Fernandez
Date: Wed, 8 May 2013 15:02:31 -0700
Subject: [PATCH] docs: Android Support Library r13 Release Notes
Release notes for Google I/O 2013 / SDK 22 release, including
DrawerLayout and SlidingPaneLayout classes.
Change-Id: Ibebcec7f34da59a0779b4e83e135d22d2d791542
---
docs/html/tools/extras/support-library.jd | 39 +++++++++++++++++++++++
1 file changed, 39 insertions(+)
diff --git a/docs/html/tools/extras/support-library.jd b/docs/html/tools/extras/support-library.jd
index 6475e3c5ea071..0ec6592f08bf4 100644
--- a/docs/html/tools/extras/support-library.jd
+++ b/docs/html/tools/extras/support-library.jd
@@ -49,6 +49,45 @@ the Support Package, as denoted by revision number.
Support Package, revision 13 (May 2013)
+
+
+
+ - Changes for v4 support library:
+ -
+
+ - Added {@link android.support.v4.widget.DrawerLayout} for creating a
+ Navigation
+ Drawer that can be pulled in from the edge of a window.
+ - Added {@link android.support.v4.widget.SlidingPaneLayout} widget for creating linked
+ summary and detail views that appropriately adapt to various screen sizes.
+ - Added {@link android.support.v4.app.ActionBarDrawerToggle} as a way to tie
+ together the functions of {@link android.support.v4.widget.DrawerLayout} and {@link
+ android.app.ActionBar}.
+ - Added {@link android.support.v4.widget.ViewDragHelper} as a new common component
+ for dragging views within a parent view.
+ - Added {@link android.support.v4.widget.ScrollerCompat} to provide {@link
+ android.widget.Scroller} and {@link android.widget.OverScroller} compatibility support.
+
+ - Updated {@link android.support.v4.view.ViewPager} to throw an exception if the
+ associated {@link android.support.v4.view.PagerAdapter} class is modified without a call
+ to {@link android.support.v4.view.PagerAdapter#notifyDataSetChanged notifyDataSetChanged()}.
+
+ - Fixed an issue with {@link android.support.v4.view.ViewPager} children drawing sort
+ order.
+ - Fixed {@link android.support.v4.view.GestureDetectorCompat} to dispatch missing
+ {@link android.view.GestureDetector.SimpleOnGestureListener#onSingleTapConfirmed} calls
+ between tap timeout and long press events.
+
+
+
+
+
+
+
+