The Android Support Library package is a set of code libraries that provide backward-compatible versions of Android framework APIs as well as features that are only available through the library APIs. Each Support Library is backward-compatible to a specific Android API level. This design means that your applications can use the libraries' features and still be compatible with devices running Android 1.6 (API level 4) and up.
This guide provides information about what features are enabled by the Support Libraries, how to use them in your development environment and information about library releases.
Overview
Including the Support Libraries in your Android project is considered a best practice for application developers, depending on the range of platform versions your app is targeting and the APIs that it uses. Using the features the libraries provide can help you improve the look of your application, increase performance and broaden the reach of your application to more users. If you use the Android code template tools, you will notice that all the Android application templates include one or more of the Support Libraries by default.
The Support Libraries each target a base Android API level and each provides a different set
of features. In order to effectively use the libraries, it is important to consider what features
you want to support and understand what features are supported by each library at what Android
API level. To get started, review the
Support Library Features guide.
After that, go to the
Support Library Setup topic to
learn how to incorporate the Support Libraries into your application. For more details
about Support Library APIs, see the android.support
packages in the API reference.
Revisions
This section provides details about the Support Library package releases.
Android Support Library, revision 23.3.0 (April
2016)
- Changes for v4 Support Library:
-
- Added
AppLaunchCheckerto help track how your app has been launched by the user in the past.hasStartedFromLauncher()lets you know if the user has launched your app from the home screen before, or if it has only been started by other means (for example, to view specific web URLs). - Fixed a memory leak in
MediaBrowserServiceCompat.mConnections. (Issue 205220) - Fixed issue where
ViewPagerdoes not account for page margins when flipping page. (Issue 203816) Fragment.onRequestPermissionsResult()is now delivered to child fragments.
- Added
- Changes for v7 appcompat library:
-
- Fixed an issue in
AppCompatSpinnerthat could cause multiple popups to appear. (Issue 205052) - Fixed an issue with how borderless buttons were colored. (Issue 202967)
- Fixed a compatibility issue between
AppCompatDialogFragmentandAlertDialog. (Issue 204805) - Reverted changes to
TintResourcesthat were causing memory and configuration issues. (Issue 205236)
- Fixed an issue in
- Changes for v7 mediarouter library:
-
- Fixed
MediaRouteControllerDialogvolume slider’s behavior. (Issue 202299)
- Fixed
- Changes for v7 Preference library:
-
- Fixed issue where
PreferenceFragmentCompatwould crash ifdividerHeightis specified. (Issue 204778)
- Fixed issue where
- Changes for v7 recyclerview library:
-
- Fixed a bug where
RecyclerViewwould not invoke scroll callbacks if the range of visible items shrank. (Issue 200987) - Fixed a bug where
RecyclerViewwould freeze if it was in linear layout, was weighted, and contained images. (Issue 203276) - Fixed a crash in
OrientationHelper.getStartAfterPadding(). (Issue 180521) - Fixed a crash with usages of
android:nestedScrollingEnabled. (Issue 197932)
- Fixed a bug where
- Changes for Design Support Library:
-
- Fixed a bug where a hidden bottom sheet would handle touch events. (Issue 203654)
- Fixed a layout issue with
BottomSheetBehaviorwhenfitsSystemWindowsis true. (Issue 203057) - Fixed an accessibility issue with
Snackbar. (Issue 182145) - Fixed a crash on
Snackbarswipe. (Issue 203924) - Fixed a bug in
AppBarLayoutwithenterAlways. (Issue 203661) - Fixed a bug where
TextInputLayoutunnecessarily clearsEditTextobject's background color filter. (Issue 203357)
Android Support Library, revision 23.2.1 (March
2016)
- Changes for v4 Support Library:
-
- Fixed an exception in
DrawableCompat.wrap()andLayerDrawableon API levels 17 to 19. (Issue 201817) - Fixed an
ArrayIndexOutOfBoundsExceptioninViewDragHelper.shouldInterceptTouchEvent(). (Issue 182262) - Fixed a bug in
ViewPagerrelated to scroll calculation for size changes. - Fixed a
NullPointerExceptionwhenDrawerLayout.removeDrawerListener()is called without a setDrawerLayout.DrawerListener. (Issue 202478) - Fixed a bug where
ViewPagerdoes not setAccessibilityEventparameters properly when scrolling. - Fixed an issue that caused lag during device rotation when using
Drawable.wrap(). (Issue 201924)
- Fixed an exception in
- Changes for v7 appcompat library:
-
- Reverted dependency on vector assets so that developers using the
appcompat
library are not forced to use
VectorDrawableand its associated build flags. - Fixed a compatibility issue with Night Mode and API level 23. (Issue 201910)
- Fixed a compatibility issue with
SwitchCompatand API level 7. (Issue 201942) - Fixed an issue with propagating configuration values in Resources objects Issue 201928
- Fixed a compatibility issue where the
NotificationCompat.MediaStylecancel button becomes invisible on API level 21 and below. (Issue 202156) - Fixed a compatibility crash with
AppCompatSpinneron API level 21 and below. (Issue 202246) - Fixed an issue where the
app:textAllCaps = "false"style did not work. (Issue 202117) - Fixed a crash when restoring
SearchView. (Issue 201836) - Fixed a memory leak that occurs when tinting drawable resources using AppCompat. (Issue 202379)
- Fixed an issue with
KeyEventon API level 11 and lower. (Issue 202939)
- Reverted dependency on vector assets so that developers using the
appcompat
library are not forced to use
- Changes for v7 cardview library:
-
- Added Night Mode support for
CardView. (Issue 194497)
- Added Night Mode support for
- Changes for v7 recyclerview library:
-
- Fixed bugs related to various measure-spec methods. (Issue 201856)
- Reduced the lockdown period in which
RecyclerViewdoes not allow adapter changes while calculating a layout or scroll. (Issue 202046) - Fixed a crash when calling
notifyItemChanged()on an item that is out of view. (Issue 202136) - Fixed a crash that occurs when
RecyclerView.LayoutManageradds and removes a view in the same measurement pass. (Issue 193958)
- Changes for v7 mediarouter library:
-
- Fixed a crash that occurs when calling
MediaRouter.getInstance()on API level 17. (Issue 180654)
- Fixed a crash that occurs when calling
- Changes for v17 Leanback Library:
-
- Fixed an issue with
GridLayout.onAddFocusables()that caused the wrong item to be selected. - Fixed issue with
GuidedStepFragmentactions disappearing after an action was collapsed.
- Fixed an issue with
- Changes for Design Support Library:
-
- Fixed a
TabLayoutcrash caused by tab-pooling. (Issue 201827) - Fixed a bug in
NavigationViewthat caused the wrong color to be selected. (Issue 201951) - Fixed a bug where
setBackgroundTintList()was no longer able to change the background color. (Issue 201873) - Fixed an issue where
AppBarLayoutdid not completely scroll out of view when used withandroid:fitsSystemWindows = “true”. (Issue 201822) - Fixed an issue where
BottomSheetDialogdid not display short content views correctly. (Issue 201793) - Fixed an issue where
BottomSheetDialogFragmentmoved sporadically when content inside was changed. (Issue 202125) - Fixed a crash in TextInputLayout counter link
- Fixed a crash that occured when
TextInputLayout.getCounterMaxLength()restored a saved state. (Issue 202375) - Fixed a
ClassCastExceptionthat occurred when restoring aCoordinatorLayoutusing the saved state of a view that was not aCoordinatorLayout.
- Fixed a
- Changes for VectorDrawableCompat:
-
- Fixed a bug where the wrong variable was read for
android:tintMode. (Issue 201907)
- Fixed a bug where the wrong variable was read for
Android Support Library, revision 23.2.0 (February
2016)
- Changes for v4 Support library:
-
- Added
MediaBrowserCompatforMediaBrowsersupport, andMediaBrowserServiceCompatforMediaBrowserServicesupport. This is useful when connecting a media app’s background service with UI components, and integrating with Android Auto and Android Wear without requiring API level 21 or higher. - The system now calls
onActivityResult()for a nestedFragmentActivity.
- Added
- Changes for v7 AppCompat library:
-
- Added Night Mode functionality to API level 14 and higher. Switch between Material Light and Material Dark Themes based on the time of day or app-specific setting.
-
- Day and night themes can be found here:
<sdk>/extras/android/support/v7/appcompat/res/values/themes_daynight.xml AppCompatDelegate.setDefaultNightMode(): sets the app’s default mode by passing one of the following constants:-
MODE_NIGHT_AUTOMODE_NIGHT_NOMODE_NIGHT_YESMODE_NIGHT_FOLLOW_SYSTEM
AppCompatDelegate.setLocalNightMode(): overrides the night mode setting for the local app component.AppCompatDelegate.getDefaultNightMode(): returns the default night mode.
- Day and night themes can be found here:
- Changes for v7 mediarouter library:
-
MediaRouteControllerDialognow correctly applies custom app theme colors.
- Changes for Design support library:
-
- Added support for bottom
sheets. An interaction plugin,
BottomSheetBehavior, allows a child view of aCoordinatorLayoutto act as a bottom sheet. The base class,BottomSheetCallback, provides callbacks to monitor bottom sheet events.
- Added support for bottom
sheets. An interaction plugin,
- Changes for the CustomTabs support library:
-
- Chrome Custom Tabs now allows apps to include a bottom bar with action buttons in addition to the existing top action button.
CustomTabsIntent.Builder.addToolBarItem(): adds an action button to a custom tab. You can use this to add multiple buttons.CustomTabsSession.setToolBarItem(): updates the visuals for toolbar items. This method will only succeed if it is given a valid id and the browser session is in the foreground.
- Added VectorDrawable support library:
-
- Added Classes:
-
VectorDrawableCompatAnimatedVectorDrawableCompat
- Adds support for
VectorDrawableassets to apps running on API level 7 or higher.AnimatedVectorDrawableassets are also supported on API level 11 or higher. Vector assets can be considerably smaller than image assets and should help reduce app size by reducing the amount of assets required to support multiple device screens. - This library is now a dependency of the v7 AppCompat library, allowing
developers and AppCompat
to easily use vector drawables. To use
VectorDrawableCompatwithin anImageButtonorImageView, use theapp:srcCompatXML attribute orsetImageResource()method. - To keep referencing attribute IDs on API level 20 or
lower, add the following
apptflag to yourbuild,gradlefile: -
- If you are building with Android Plugin for Gradle 1.5.0 or
lower, add the following to your
build.gradlefile: -
android { defaultConfig { // Stops the Gradle’s automatic rasterization of vectors generatedDensities = [] } // Flag that tells aapt to keep the attribute ids aaptOptions { additionalParameters "--no-version-vectors" } } - If you are building with Android Plugin for Gradle 2.0.0 or
higher, add the following to your
build.gradlefile: -
android { defaultConfig { vectorDrawables.useSupportLibrary = true } }
- If you are building with Android Plugin for Gradle 1.5.0 or
lower, add the following to your
- Changes for v17 Leanback Library:
-
- Added new capabilities to
GuidedStepFragment, which is a component that guides users through a decision or series of decisions: -
- Added button actions to
GuidedAction: GuidedStepFragment.setButtonActions(): sets a list ofGuidedActionbuttons that the user may select from the Actions view.
- Added button actions to
- Description fields are now editable:
-
GuidedAction.Builder.descriptionEditable(): when passingtrue, sets the action’s description to be editable.GuidedAction.getEditDescription(): returns the editable description as aCharSequence.
- Added drop-down lists of sub-actions:
-
GuidedAction.setSubActions(): sets aGuidedActionlist as a drop-down menu of sub-actions.
- Added the
GuidedDatePickerActionwidget forDatePickerfunctionality:- The date is selected using year, month, and day columns and has a customizable range.
GuidedDatePickerAction.Builder: builder class for theGuidedDatePickerActionobject.GuidedDatePickerAction.Builder.datePickerFormat(String datePickerFormat): set the desired date format by passing the appropriate three-characterString, e.g.“YMD”or“MDY”. Alternatively, use thedatePickerFormatXML attribute.
- Added new capabilities to
- Changes for v7 RecyclerView library:
-
RecyclerViewnow has an opt-in feature called AutoMeasure which allowsRecyclerView.LayoutManagerto easily wrap content or handle various measurement specifications provided by the parent of theRecyclerView. It supports all existing animation capabilities of theRecyclerView.-
- If you have a custom
RecyclerView.LayoutManager, callsetAutoMeasureEnabled(true)to start using the new AutoMeasure API. All built-inRecyclerView.LayoutManagerobjects enable auto-measure by default. RecyclerView.LayoutManagerno longer ignores someRecyclerView.LayoutParamssettings, such asMATCH_PARENTin the scroll direction.Note: These lifted restrictions may cause unexpected behavior in your layouts. Make sure you specify the correct layout parameters.
- If you have a custom
- When updating a
RecyclerView.ViewHolderwith payload information,DefaultItemAnimatornow disables change animations. - You can now modify the
ItemTouchHelperescape velocity to control swipe sensitivity. To make it easier or harder to swipe, overridegetSwipeEscapeVelocity(float defaultValue)and modifydefaultValue.
Android Support Library, revision 23.1.1 (November 2015)
- Changes for v7 recyclerview library:
-
- Fixed a crash that occurs when you perform a swipe-to-dismiss action that the
ItemTouchHelperutility class provides, and then add an item. (Issue 190500)
- Fixed a crash that occurs when you perform a swipe-to-dismiss action that the
- Changes for v7 preference library:
-
- Fixed an issue with ProGuard usage. (Issue 183261)
- Changes for v17 Leanback Support library:
-
- Fixed a number of internal issues in this library.
- Changes for Design Support library:
-
- Added the
getHeaderViewmethod to theNavigationViewclass. - Fixed a transparent background issue for a
FloatingActionButtonobject on devices running Android 4.0 (API level 15) and lower. (Issue 183315)
- Added the
Android Support Library, revision 23.1.0 (October 2015)
- Changes for v4 Support library:
-
- Added
OnScrollChangedListenerinterface support to theNestedScrollViewwidget. It allows you to receive callbacks when the scroll X or Y positions change. - Added a
MediaButtonReceiverclass to forward received playback controls to a service that’s managing theMediaSessionCompatclass. TheMediaSessionCompatclass has a constructor that can automatically find a media button receiver in the manifest. A media button receiver is a key part to handling playback controls from hardware or bluetooth controls.
- Added
- Changes for v7 appcompat library:
-
- Added material design
SeekbarandImageButtonwidgets. - Updated the
ImageViewwidget to support the tint feature. - Updated the look-and-feel of the
SwitchCompatwidget.
- Added material design
- Changes for v7 mediarouter library:
-
- Added the following features to the
MediaRouteChooserDialogclass: - Displays a loading page while discovering media route providers.
- Includes a device type icon for easier device identification.
- Sorts the routes according to frequency of use in the current app.
- Supports landscape mode.
- Added the following features to the
MediaRouteControllerDialogclass: - Recognizes screen casting and provides a proper description.
- Supports various album art sizes and aspect ratios, and loads the art asynchronously.
- Automatically selects the content color based on the primary color of the app.
- Adjusts the dialog layout based on available screen space on the device.
- Supports landscape mode.
- Added the following features to the
- Changes for v7 palette library:
-
- Added the
setRegion()method to support extracting color from a specific region of aBitmapobject.
- Added the
- Changes for v7 recyclerview library:
-
- Added an improved animation API to the
ItemAnimatorclass for better customizations: - Change animations no longer enforce two copies of the
ViewHolderobject, which enables item content animations. Also, theItemAnimatorobject decides whether it wants to reuse the sameViewHolderobject or create a new one. - The new information record API gives the
ItemAnimatorclass the flexibility to collect data at the correct point in the layout lifecycle. This information is later passed into the animate callbacks.
- Provided an easy transition plan for this backward-incompatible API change:
- If you’ve previously extended the
ItemAnimatorclass, you can change your base class toSimpleItemAnimatorand your code should work as before. TheSimpleItemAnimatorclass provides the old API by wrapping the new API. - Some methods were removed from the
ItemAnimatorclass. The following code will no longer compile:
recyclerView.getItemAnimator().setSupportsChangeAnimations(false)
You can replace it with:
ItemAnimator animator = recyclerView.getItemAnimator(); if (animator instanceof SimpleItemAnimator) { ((SimpleItemAnimator) animator).setSupportsChangeAnimations(false); } - Added an improved animation API to the
- Changes for v7, v14, and v17 Preference Support library:
-
- Removed APIs for controlling
EditTextdialogs.
- Removed APIs for controlling
- Changes for v17 Leanback Support library:
-
- Added a version of the
GuidedStepFragmentclass for the Support library (extendsandroid.support.v4.app.Fragment), and improved animations and transitions. - Updated the
GuidedStepFragmentclass so it can be placed on top of existing content. - Added the ability to annotate different types of search completions to the
SearchFragmentclass. - Added staggered slide transition support to the
VerticalGridFragmentclass.
- Added a version of the
- Changes for Design Support library:
-
- Added
character counting support to the
TextInputLayoutwidget. - Added edge snapping support to the
AppBarLayoutclass by adding theSCROLL_FLAG_SNAPconstant. When scrolling ends, if the view is only partially visible, the view is snapped and scrolled to its closest edge. - Added support for custom views to the
NavigationViewclass by using theapp:actionLayoutattribute orMenuItemCompat.setActionView()method.
- Added
character counting support to the
- Changes for Custom Tabs Support library:
-
- Added the
enableUrlBarHiding()method to theCustomTabsIntentclass. It lets the client customize whether the URL bar should be hidden automatically on scroll down. - Added the
setActionButton()method to theCustomTabsSessionclass. It lets the client change the icon for a custom action button in an already launched custom tab. - Added the
TAB_SHOWNandTAB_HIDDENconstants as new events for theonNavigationEventmethod of theCustomTabsCallbackclass.
- Added the
Android Support Library, revision 23.0.1 (September 2015)
- Changes for v7 and v14 Preference Support library:
-
- Added the material design layout and style files. (Issue 183376)
- Changes for v7 appcompat library:
-
- Fixed crash issues for the
Fragmentclass by limiting the use of hardware layers to Android 4.1 (API level 16) and higher. (Issue 183896) - Fixed an issue where hardware buttons did not work when an activity had set the
Toolbarclass to act as theActionBarby using thesetSupportActionBar()method. (Issue 183334) - Updated the
AppCompatDialogFragmentclass so it no longer throws theWindows feature must be requested before adding contenterror. (Issue 183186)
- Fixed crash issues for the
- Changes for Design Support library:
-
- Fixed the
AppBarLayoutclass so it now draws correctly after rotation. (Issue 183109) - Fixed the
TabLayoutclass so it now behaves correctly when a user clicks after a swipe. (Issue 183123)
- Fixed the
- Changes for Custom Tabs Support library:
-
- Lowered the
minSdkVersionvalue from 16 to 15 for version support. - Added a way to generate a
CustomTabsSessionTokenfrom an intent.
- Lowered the
Android Support Library, revision 23 (August 2015)
- Added new support libraries:
For a complete list of the Support Library changes, see the Support Library API Differences Report.
Android Support Library, revision 22.2.1 (July 2015)
- Changes for Design Support library:
-
- Added the
hide()andshow()methods to theFloatingActionButtonclass for programmatic triggering of animations. - Added the
LENGTH_INDEFINITEconstant to theSnackbarclass for showing a snackbar until it is dismissed or another snackbar is shown. Also, added thesetActionTextColor(int)andsetActionTextColor(ColorStateList)methods. - Added the
getSelectedTabPosition()method to theTabLayoutclass for retrieving the currently selected tab. - Provided a fully fluent API for the
NotificationCompat.MediaStyleclass for method chaining. - Added convenience methods to the
RecyclerViewfor batch insertion of items.
- Added the
For a complete list of the Support Library changes, see the Support Library API Differences Report.
Android Support Library, revision 22.2.0 (May 2015)
- Added Design Support library:
-
- Added
TextInputLayoutfor showingEditTexthint and error text as floating labels. - Added
FloatingActionButtonfor implementing a primary action on your interface as a floating action button, supporting either default or mini sizes. - Added
Snackbarfor providing lightweight feedback with an optional action in an animated snackbar. - Added
TabLayoutfor implementing fixed and scrollable tabs as well as easy integration withViewPager. - Added
NavigationViewfor implementing navigation drawer contents, including the ability to inflate menu items via a Menu Resource. - Added
CoordinatorLayout, a general purpose layout, used for building dependencies between sibling views and allowing easy scrolling reactions between components viaCoordinatorLayout.Behavior. Many of the Design Library components rely on being a child of aCoordinatorLayout. - Added
AppBarLayout, a container for aToolbarand other views (such asTabLayout) for reacting to scrolling events by scrolling off the screen, becoming visible in reaction to a downward scroll, or collapsing/uncollapsing before scrolling off/onto the screen. - Added
CollapsingToolbarLayoutfor controlling how aToolbarcollapses. A toolbar may collapse by: pinning components to the top of the screen while it collapses, introducing parallax scrolling of components such as anImageView, or adding a content scrim color when the view is partially collapsed.
- Added
- Changes for v4 support library:
-
- Added the
getContentChangeTypes()andsetContentChangeTypes()methods and related change type fields to theAccessibilityEventCompatclass for accessibility event handling. - Added the
getActiveQueueItemId(),getCustomActions(), andgetExtras()methods with related state fields to thePlaybackStateCompatclass for getting custom actions from the queue. - Added the
addCustomAction(),setActiveQueueItemId(), andsetExtras()methods to thePlaybackStateCompat.Builderclass for adding custom actions to a playback state. - Added the
fromCustomAction()andgetCustomAction()methods to thePlaybackStateCompat.CustomActionclass for getting custom actions from the queue. - Added the
isAttachedToWindow(),offsetLeftAndRight(), andoffsetTopAndBottom()methods to theViewCompatclass for working with views. - Added the
addOnPageChangeListener(),clearOnPageChangeListeners(), andremoveOnPageChangeListener()methods to theViewPagerclass for responding to page changes.Deprecated the
setOnPageChangeListener()method. - Added the
notifySubtreeAccessibilityStateChanged()method to theViewParentCompatclass for notifying a view parent that the accessibility state of one of its descendants has changed. - Added the
translationZ(),translationZBy(),z(), andzBy()methods to theViewPropertyAnimatorCompatclass for adding animation.
- Added the
- Changes for v7 appcompat library:
-
- Added the
onWindowStartingSupportActionMode()method to theAppCompatActivity,AppCompatCallback, andAppCompatDialogclasses for handling action modes started from the current window. - Added the
isHandleNativeActionModesEnabled()andsetHandleNativeActionModesEnabled()methods to theAppCompatDelegateclass for handling native action modes.
- Added the
For a complete list of the Support Library changes, see the Support Library API Differences Report.
Android Support Library, revision 22.1.0 (April 2015)
- Changes for annotations library:
-
- Added the Annotations library to provide support for enhanced code inspections. Annotations are added as metadata tags that you attach to variables, parameters, and return values to inspect method return values, passed parameters, and local variables and fields.
- Changes for v4 support library:
-
- Added the
ColorUtilsclass to provide a set of color-related utility methods. - Added the
unwrap()andwrap()methods to theDrawableCompatclass , allowing you to usesetTint(),setTintList(), andsetTintMode()on all API level 4 or higher devices. - Added the
TraceCompatclass to write trace events to the system trace buffer, which can then be collected and visualized using the Systrace tool. - Added the
CircularIntArrayclass to create circular integer array data structures. - Added the
clear(),removeFromStart(), andremoveFromEnd()methods to theCircularArrayclass. Also, changed the existing methods in this class to be non-final. - Added the
InputDeviceCompatas a helper class to access data in theInputDeviceCompatclass. - Added the
LayoutInflaterCompatclass as a helper class to access data in theLayoutInflaterCompatclass and added theLayoutInflaterFactoryinterface. - Added classes, methods, and interfaces to support nested scrolling.
- Added the
NestedScrollingChildHelperandNestedScrollingParentHelperhelper classes for implementing nested scrolling parent and child views. - Added the
NestedScrollingChildinterface to be implemented byViewsubclasses. - Added the
NestedScrollingParentandScrollingViewinterfaces to support scrolling operations and provide scroll related APIs. - Added the
getNestedScrollAxes()method to theViewGroupCompatclass. - Added methods to the
ViewParentCompatclass to support nested scrolling. - Added the
NestedScrollViewclass to support nested scrolling parent and child on both new and old versions of Android.
- Added the
- Added methods and constants to the
MotionEventCompatclass for getting axis values and event source. - Updated the
AccessibilityNodeInfoCompatclass to add methods for errors, content invalidation and labels. - Added the following interpolation classes for animation:
FastOutLinearInInterpolator,FastOutSlowInInterpolator,LinearOutSlowInInterpolator,LinearOutSlowInInterpolator, andPathInterpolatorCompat. - Added the
Spaceclass to create gaps between components in general purpose layouts. This class is deprecated in the gridlayout library. - Added the
TextViewCompatclass for accessing features in aTextView. - Added a displacement parameter to the
onPull()method in theEdgeEffectCompatclass.
- Added the
- Changes for v7 appcompat library:
-
- Added tint support to appcompat widgets, including
AppCompatAutoCompleteTextView,AppCompatButton,AppCompatCheckBox,AppCompatCheckedTextView,AppCompatEditText,AppCompatMultiAutoCompleteTextView,AppCompatRadioButton,AppCompatRatingBar,AppCompatSpinner, andAppCompatTextView. - Updated the
AppCompatActivityas the base class for activities that use the support library action bar features. This class replaces the deprecatedActionBarActivity. - Added the
AppCompatCallbackinterface to be implemented for AppCompat to be able to perform callbacks. - Added the
AppCompatDelegateabstract class as a delegate you can use to extend AppCompat's support to any activity. - Added the
AppCompatDialogclass as the base class for AppCompat themed dialogs. - Added the spinner style
AlertDialogandAlertDialog.Builderclasses to provide an AppCompat themedAlertDialog. - Added the
Palette.Builderclass for generatingPaletteinstances.- Added the
from(Bitmap)method to thePaletteclass to start generating a Palette with the returnedPalette.Builderinstance. - Deprecated the
generate()andgenerateAsync()methods.
- Added the
- Added the
getAbsoluteAlignment()method to theGridLayout.Specclass. - Deprecated use of
app:themefor stylingToolbar. You can now useandroid:themefor toolbars on all API level 7 and higher devices andandroid:themesupport for all widgets on API level 11 and higher devices.
- Added tint support to appcompat widgets, including
- Changes for v17 leanback library:
-
- Added
GuidedStepFragment,GuidanceStylistandGuidedActionsStylistto support creating multi-step decision flows.
- Added
- Changes for v7 recyclerview library:
-
- Added
SortedListclasses to display items in a list order and provide notification of changes to the list. - Added the
SortedListAdapterCallbackclass that can bind a sorted list to aRecyclerView.Adapterclass.
- Added
- Changes for v8 renderscript library:
-
- Added the
ScriptIntrinsicHistogramclass for use as a histogram filter. - Added the
ScriptIntrinsicResizeclass for performing a resize of a 2D allocation.
- Added the
Android Support Library, revision 22 (March 2015)
- Changes for v4 support library:
-
- Updated the
getDrawable()method to return a drawable object for a specified specific resource ID, screen density, and theme. - Added the
setImportantForAccessibility()method so you can indicate if a view should trigger accessibility events. - Added the
getStatusBarBackgroundDrawable()method so you can get the status bar background drawable. - Added methods to the
NotificationCompat.CarExtender.UnreadConversationclass so Android Auto messaging apps can retrieve additional notification data. - Added the
getProgressCircleDiameter()method to return the diameter of a circle layout. - Changed the default
DrawerLayoutstatus bar color tocolorPrimaryDark.
- Updated the
- Changes for v7 appcompat library:
-
- Added the spinner style
Base_Widget_AppCompat_Spinner_Underlined. - Added tinted widgets styles with
Widget_AppCompat_AutoCompleteTextView,MultiAutoCompleteTextView,TextAppearance_AppCompat_Button, andBase_Widget_AppCompat_RatingBar.
- Added the spinner style
- Changes for v17 leanback library:
-
- Added the
getRecycledPoolSize()andsetRecycledPoolSize()methods to allow customized recycled pool sizes. - Added the
WRAP_CONTENTattribute to the layout width setting to support wrapped content for title icons. - Defined
R.transitionin XML to improve transition updates. - Enabled support for right to left layouts.
- Added the play and pause media key events support to the
PlaybackOverlayFragmentclass. - Added enter and return transitions to the
BrowseFragmentclass and theDetailsFragmentclass. - Added the
replace()method to replace items in an object’s adapter array.
- Added the
- Changes for v7 mediarouter library:
-
- Updated Google Cast icons to use the material design style.
- Updated all the icons used in the
MediaRouterdialogs to use the material design style.
- Changes for v7 recyclerview library:
-
- Added the
getlayoutPosition()andgetadapterPosition()methods to theRecyclerViewclass. - Deprecated the
classgetChildPosition()andfindViewHolderForPosition()methods in theRecyclerViewclass. - Deprecated the
getPosition()method in theRecyclerView.ViewHolderclass. - Deprecated the
getViewPosition()method in theRecyclerView.LayoutParamsclass.
- Added the
Android Support Library, revision 21.0.3 (December 2014)
- Changes for v4 support library:
-
- Added several
NotificationCompat.WearableExtendermethods to improve the display of barcodes in notifications on wearable devices.
- Added several
Android Support Library, revision 21.0.2 (November 2014)
- Changes for v4 support library:
-
- Added
NotificationCompat.CarExtenderclass to support Android Auto extensions to notifications.
- Added
- Changes for v7 appcompat library:
-
- Added the
PopupMenuconstructor to support new popup menus. - Added support for a Collapse icon description in the
Toolbarclass. - Updated the
SearchViewwidget to support displaying thecommitIcon. - Removed the
buttonGravityattribute from theToolbarclass.
- Added the
- Changes for v7 cardview library:
-
- Added
setCardBackgroundColor(int)API to support changing the background color of theCardView. - Changed the
CardViewto more accurately report its opacity value asTRANSLUCENT.
- Added
- Changes for v7 recyclerview library:
-
- Added
TOUCH_SLOP_DEFAULTandTOUCH_SLOP_PAGINGconstants to theRecyclerViewclass to support touch slop configurations for paging.
- Added
- Changes for v17 leanback library:
-
- Added support to generate v4 code fragments.
- Changed the secondary text color on
CardView.
Android Support Library, revision 21.0.1 (November 2014)
- Added multidex support library to support multiple Dalvik Executable (DEX) files for multi-dex file support prior to Android 5.0.
Android Support Library, revision 21 (October 2014)
- Changes for v4 support library:
-
- Added support for
Fragmenttransitions for devices running Android 5.0 (API level 21). Be aware that transitions have no effect on devices running Android 4.4 and lower. - Added
DocumentFileto ease the transition fromFilewhile working with document trees. However, this class demands more processing overhead compared to the platform'sDocumentsContractAPI added in Android 4.4 (API level 19). So you should switch to usingDocumentsContractwhen running on Android 4.4 and higher.
- Added support for
- Changes for v7 appcompat library:
-
- Added support for material design user interfaces.
- Added
Toolbar, which generalizes the functionality ofActionBarfor use within app layouts. - Updated
ActionBarDrawerToggle, which contains the menu-to-arrow animation - Updated common user interface widgets to allow tinting via theme attributes when running on pre-Android 5.0 devices
- Added
SwitchCompat, a backport of theSwitchwidget that was added in Android 4.0 (API level 14).
- New v7 cardview library:
-
- Added the
CardViewwidget, which provides a material design-compatible implementation for displaying data items.
- Added the
- New v7 recyclerview library:
-
- Added the
RecyclerViewwidget, which provides a flexible list view for providing a limited window into a large data set.
- Added the
- New v7 palette library:
-
- Added
Paletteclass, which lets you extract prominent colors from an image.
- Added
- New v17 leanback library:
-
- Added support for building TV user interfaces, including
BrowseFragment,DetailsFragment, andPlaybackOverlayFragment. For more information about using these user interface widgets, see Building TV Playback Apps.
- Added support for building TV user interfaces, including
Android Support Library, revision 20 (July 2014)
- Changes for v4 support library:
-
- Added extended notification support for Android Wear in
NotificationCompat.WearableExtender, which allows you to specify wearable-specific features in your notifications. - Added
NotificationCompat.Action.WearableExtender, which allows actions to be added on wearable notifications. - Added
NotificationManagerCompat, which allows you to issue notifications that properly support wearable features. - Added
RemoteInput, which allows a handheld device to receive voice input from a notification that appears on a wearable device. - Improved the handling of touch feedback in
SwipeRefreshLayout.
- Added extended notification support for Android Wear in
Android Support Library, revision 19.1.0 (March 2014)
- Changes for v4 support library:
-
- Added the
SwipeRefreshLayoutclass, which enables users to refresh the contents of a view with a vertical swipe gesture. - Fixed accessibility issues with navigation drawers.
- Added the
- Changes for v7 appcompat library:
-
- Fixed background issues with the action bar.
Android Support Library, revision 19.0.1 (December 2013)
- Changes for v4 support library:
-
- Improved
PrintHelperby adding asynchronous handling of printing. - Fixed the
DrawerLayoutclass approximation of theaddChildrenForAccessibility()method. - Fixed slide drawable mirroring in
ActionBarDrawerToggle. - Fixed off-by-one issue when removing an item from a collection iterator.
- Improved
- Changes for v7 mediarouter library:
-
- Improved route identification by using full component name in the
MediaRouteProvider.ProviderMetadata. - Updated
MediaRouteChooserDialogto hide disabled routes.
- Improved route identification by using full component name in the
- Changes for v8 renderscript library
-
- Added error propagation for the RenderScript thunking layer.
Android Support Library, revision 19 (October 2013)
- Changes for v4 support library:
-
- Added support for external Storage APIs with the
getObbDirs(),getExternalFilesDirs(),getExternalCacheDirs(), andgetStorageState(). 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
PrintHelperclass 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
PopupMenuCompatandListPopupWindowCompat. - Improved accessibility support with the addition of a
findFocus()method inAccessibilityNodeProviderCompatand thegetLiveRegion()method inAccessibilityNodeInfoCompat. - Added helper class
ScaleGestureDetectorCompatfor accessing new scaling gesture methods. - Fixed problem with
ActionBarDrawerTogglein right-to-left language displays. - Modified
AutoScrollHelperoption to consume touch events or allow them to be passed through to other views.
- Added support for external Storage APIs with the
- 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)
- Changes for v4 support library:
-
- User interface
- Added
BidiFormatterfor handling text strings that combine right to left and left to right-formatted text. - Modified
ViewPagerto better handle cases where the pager has a measured width of zero in the initial layout processing. - Modified
DrawerLayoutandSlidingPaneLayoutto not throw exceptions for measurement while the project code is being edited.
- Added
- Accessibility
- Added
ExploreByTouchHelperto simplify the implementation of accessibility for custom views. - Fixed a problem with
ViewPagerincorrectly populatingTYPE_VIEW_SCROLLEDaccessibility events. - Fixed a null pointer exception in
ViewPagerwhen populating an accessibility event. - Simplified
AccessibilityNodeInfoCompatby changingCharSequenceinputs toStringobjects. - Deprecated an
AccessibilityRecordCompatconstructor that used anObjectas input.
- Added
- Media
- Added
TransportMediatorhelper class to manage media transport control, such as play, pause, skip and other media actions. - Added
DisplayManagerCompatfor managing display output to one or more device displays.
- Added
- Other changes
- Added
WakefulBroadcastReceiverhelper class for implementing a common pattern of detecting a device wakeup event and passing work off to aServicewhile ensuring that the device does not go back to sleep before the handoff is complete. - Added two new APIs,
commitContentChanged()androllbackContentChanged(), toAsyncTaskLoaderto help deal with background updates for data changes that are subsequently canceled.
- Added
- User interface
- New v7 appcompat library:
-
- Added
ActionBarto allow implementation of the action bar user interface design pattern back to Android 2.1 (API level 7) and higher. Use of this class requires that you implement your activity by extending the newActionBarActivityclass.
- Added
- New v7 mediarouter library:
-
Added a new mediarouter library that provides support for the Google Cast developer preview. The v7 mediarouter library APIs provide a means of controlling the routing of media channels and streams from the current device to external screens, speakers, and other destination devices, with compatibility back to Android 2.1 (API level 7). See V7 mediarouter library for more information.
The v7 mediarouter library APIs introduced in Support Library r18 are subject to change in later revisions of the Support Library. At this time, we recommend using the library only in connection with the Google Cast developer preview.
Android Support Library, revision 13 (May 2013)
- Changes for v4 support library:
-
- Added
DrawerLayoutfor creating a Navigation Drawer that can be pulled in from the edge of a window. - Added
SlidingPaneLayoutwidget for creating linked summary and detail views that appropriately adapt to various screen sizes. - Added
ActionBarDrawerToggleas a way to tie together the functions ofDrawerLayoutandActionBar. - Added
ViewDragHelperas a new common component for dragging views within a parent view. - Added
ScrollerCompatto provideScrollerandOverScrollercompatibility support. - Added
FileProviderto allow sharing of private files between applications. - Updated
ViewPagerto throw an exception if the associatedPagerAdapterclass is modified without a call tonotifyDataSetChanged(). - Fixed an issue with
ViewPagerchildren drawing sort order. - Fixed
GestureDetectorCompatto dispatch missingonSingleTapConfirmed(MotionEvent)calls between tap timeout and long press events.
- Added
- New v7 gridlayout library:
-
- Added
GridLayoutto provide support for theGridLayoutlayout object. - Added
Spacewhich can be used to create blank areas within aGridLayoutlayout object.
- Added
Android Support Library, revision 12 (February 2013)
- Changes for v4 support library:
-
- Improved interaction behavior for
ViewPager. - Fixed a bug that could cause
ViewPagerto select the wrong page. - Fixed use of
removeView()method during layout forViewPager. - Fixed issue with
SearchViewCompatwhere using the back button to dismiss does not clear the search text. This fix only applies to host API levels 14 and higher.
- Improved interaction behavior for
Android Support Library, revision 11 (November 2012)
- Changes for v4 support library:
-
- User Interface
- Added support for nested
Fragmentclasses. - Added improvements to
FragmentManagerdebugging. - Fixed problem in
FragmentTabHostwhere fragment and tab interaction could result in aListViewstate loss. - Fixed issue with user-visible hint in
FragmentStatePagerAdapter. - Added
PageTransformerinterface toViewPagerto allow applications to supply a custom transition behavior for scrolling. - Added new features and fixes to
TaskStackBuilderfrom current release. - Fixed
PagerTitleStripto correctly track thePagerAdaptercurrently in use. - Fixed display flickering, positioning, and text clipping problems with
PagerTitleStrip. - Fixed
PagerTabStripto properly respect padding when drawing an underline.
- Added support for nested
- Accessibility
- Added support for new accessibility gesture and touch event types in
AccessibilityEventCompat. - Added support for new accessibility APIs in
ViewCompat. - Added support for
performAccessibilityAction()method toViewCompat.
- Added support for new accessibility gesture and touch event types in
- Added support for gestures with
GestureDetectorCompat. - Added support for performing atomic operations on files using a new
AtomicFileclass. - Added support for the full set of
makemethods inIntentCompat. - Added
trimToSize()method inLruCacheutility class. - Updated
ConnectivityManagerCompatto get NetworkInfo from aCONNECTIVITY_ACTIONbroadcast.
- User Interface
Android Support Library, revision 10 (August 2012)
- Changes for v4 support library:
-
- Added support for notification features introduced in Android 4.1 (API level 16) with
additions to
NotificationCompat.
- Added support for notification features introduced in Android 4.1 (API level 16) with
additions to
Android Support Library, revision 9 (June 2012)
- Changes for v4 support library:
-
- User Interface Support
- Added
PagerTabStripsupport, providing enhanced functionality beyondPagerTitleStrip. - Fixed various bugs for
PagerTitleStripandPagerTabStrip, includingsetAllCapsoption, title alignment, appearance improvements, minimum width constraints and touch navigation issues. - Added support for
ViewPagerpage gutters, which helps theViewPagerclass provide paging support for content with a large horizontal scroll range, such as a map. - Fixed numerous bugs for
ViewPager, including size and data set change problems, page positioning, user interaction, scroll tracking and keyboard navigation problems. - Fixed many bugs for
Fragment, including proper handling ofonActivityResult()when the target fragment no longer exists, dispatching selection events to invisible fragments, improvedFragmentTransaction.replace()behavior and added better state handling for fragments being moved out of view. - Added support for the
postOnAnimation()method inViewCompat. - Updated
NavUtilsto use Android 4.1 (API level 16) Up navigation functionality when available.
- Added
- Accessibility
- Updated accessibility support classes, including
AccessibilityNodeInfoCompat, to follow fixes made in Android 4.1 (API level 16). - Added support for accessibility scroll actions in
ViewPager.
- Updated accessibility support classes, including
- General improvements
- Updated
TaskStackBuilderto reflect API changes in Android 4.1 (API level 16). - Enhanced
TaskStackBuilderto allow it to be used from a Service. - Added support for
EXTRA_HTML_TEXTtoShareCompat. - Updated
NotificationCompat.Builderto support thesetNumber()method. - Added support in
ConnectivityManagerCompatfor theisActiveNetworkMetered()method.
- Updated
- User Interface Support
Android Support Library, revision 8 (April 2012)
- Changes for v4 support library:
-
- Fixed intent flags for
PendingIntentobjects generated byTaskStackBuilder. - Removed unused attributes from the gridlayout library projects to make sure the library can be built with API level 7 and higher.
- Added
.classpathand.projectfiles for the gridlayout library project.
- Fixed intent flags for
Android Support Library, revision 7 (March 2012)
- Changes for v4 support library:
-
- Added
ShareCompat, which provides helper classes for sending and receiving content for social sharing applications, including new metadata for attributing shared data to the source app. This class also provides compatible integration with the newShareActionProviderin Android 4.0. - Added
NavUtilsandTaskStackBuilderto provide support for implementing the Android Design guidelines for navigation. These additions include a way to implement the action bar's Up button across versions. For an example implementation of this pattern, see the AppNavigation sample in (<sdk>/samples/<platform>/AppNavigation). - Added
NotificationCompat.Builderto provide a compatibility implementation of Android 3.0'sNotification.Builderhelper class for creating standardized system notifications.
- Added
Android Support Library, revision 6 (December 2011)
Note: Reference for support library APIs are now available with
the framework references, for example: android.support.v4.app.
- Changes for v4 support library:
-
- Changes to ViewPager:
- Added extra decorative view support for
ViewPager. Decorative views may be supplied as child views of a pager in XML layout. - Added
PagerAdapter.getPageTitle()to supply title strings for pages, which defaults to no title for each page. - Added
PagerTitleStrip, a non-interactive title strip, that can be added as a child of ViewPager. Developers can supply text appearance and color, as well as layout sizing and gravity information. - Updated
PagerAdaptermethods to take ViewGroup objects, rather than View to avoid class casting in adapter implementations. - Updated
ViewPagerto use Launcher-style fling behavior. - Bug fixes for user interface interaction and test automation.
- Added extra decorative view support for
- Support for Fragments:
- Changed
setStartDeferred()method tosetUserVisibleHint(boolean). - Added deferred start for off-screen pages to improve performance.
- Changed
- Support for Accessiblity APIs:
- Updated
AccessibilityDelegateCompatmethods to return empty lists instead of null. - Added new APIs needed by the v4 samples.
- Updated
- Changes to ViewPager:
Android Support Library, revision 5 (December 2011)
- Changes for v4 support library:
-
- Support for Accessiblity APIs:
- Added
AccessibilityDelegateCompatto supportView.AccessibilityDelegate. - Added
AccessibilityEventCompatto supportAccessibilityEvent. - Added
AccessibilityManagerCompatto supportAccessibilityManager. - Added
AccessibilityNodeInfoCompatto supportAccessibilityNodeInfo. - Added
AccessibilityRecordCompatto supportAccessibilityRecord. - Added
AccessibilityServiceInfoCompatto supportAccessibilityServiceInfo. - Added
ViewGroupCompatto support accessibility features inViewGroup. - Modified
ViewCompatto support accessibility features inView.
- Added
- Changes to ViewPager:
- Added support for margins between pages.
An optional
Drawablecan be provided to fill the margins. - Added support for
EdgeEffect. - Added support for keyboard navigation
- Added support to control how many pages are kept to either side of the current page.
- Improved touch physics.
- Bug fixes for user interface behavior.
- Added support for margins between pages.
An optional
- Support for Accessiblity APIs:
Android Support Library, revision 4 (October 2011)
- Changes for v4 support library:
-
- Added
EdgeEffectCompatto supportEdgeEffect. - Added
LocalBroadcastManagerto allow applications to easily register for and receive intents within a single application without broadcasting them globally. - Added support in
ViewCompatto check for and set overscroll modes forViews on Android 2.3 and later. - Changes to Fragment APIs:
- Added new APIs to control the visibility of new menus.
- Added custom animation APIs.
- Added APIs in
FragmentActivityto retain custom, non-configuration instance data. - Various bug fixes.
- Fixed a
Loaderbug that caused issues in cancelingAsyncTasks when running on Froyo and older versions of the platform. The support code now uses its own version ofAsyncTaskto keep the same behavior on all platform versions.
- Added
Android Support Library, revision 3 (July 2011)
- Changes for v4 support library:
-
- Adds support for
Fragment.SavedState - Adds
MotionEventCompatto support newerMotionEventAPIs - Adds
VelocityTrackerCompatto support a newerVelocityTrackerAPIs - Adds
ViewConfigurationCompatto support a newerViewConfigurationAPIs - All new APIs (available only in the support library) that allow you to create UIs
with horizontal paging, allowing users to swipe left and right between content views. Classes to
support this include:
ViewPager: AViewGroupthat manages the layout for the child views, which the user can swipe between.PagerAdapter: An adapter that populates theViewPagerwith the views that represent each page.FragmentPagerAdapter: An extension ofPagerAdapterfor flipping between fragments.FragmentStatePagerAdapter: An extension ofPagerAdapterfor flipping between fragments that uses the library's support forFragment.SavedState.
- Adds support for
- New v13 support library:
-
- Includes the
FragmentPagerAdapterandFragmentStatePagerAdapterto support the horizontal paging.These are exactly the same as the APIs added to the v4 support library, but rely on other platform components in Android 3.2. Use this library instead of v4 if you're developing for Android 3.2 and higher (all other APIs in the v4 library are already available with API level 13).
- Includes the
Android Support Library, revision 2 (May 2011)
- Changes for v4 library:
-
- Support for fragment animations
- Fix
Fragment.onActivityResult()bug
Android Support Library, revision 1 (March 2011)
Initial release with the v4 library.