summaryrefslogtreecommitdiffstats
path: root/docs/html/tools/support-library/index.jd
blob: 9dc0ed154208e6479252b8ae64d696f7f87ceed2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
page.title=Support Library

@jd:body

<div id="qv-wrapper">
  <div id="qv">

    <h2>In this document</h2>
    <ol>
      <li><a href="#overview">Overview</a></li>
      <li><a href="#revisions">Revisions</a></li>
    </ol>

    <h2>See also</h2>
    <ol>
      <li><a href="{@docRoot}tools/support-library/features.html">
        Support Library Features</a></li>
      <li><a href="{@docRoot}tools/support-library/setup.html">
        Support Library Setup </a></li>
    </ol>

  </div>
</div>

<p>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.</p>

<p>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.</p>


<h2 id="overview">Overview</h2>

<p>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
  <a href="{@docRoot}tools/projects/templates.html">code template</a> tools, you will notice that
  all the Android application templates include one or more of the Support Libraries by default.</p>

<p>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
  <a href="{@docRoot}tools/support-library/features.html">Support Library Features</a> guide.
  After that, go to the
  <a href="{@docRoot}tools/support-library/setup.html">Support Library Setup</a> topic to
  learn how to incorporate the Support Libraries into your application. For more details
  about Support Library APIs, see the {@link android.support.v4.app android.support}
  packages in the API reference.</p>


<h2 id="revisions">Revisions</h2>

<p>This section provides details about the Support Library package releases.</p>



<div class="toggle-content opened">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-opened.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 23</a> <em>(August 2015)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
     <dt>Added new support libraries:</a></dt>
      <dd>
        <ul>
          <li><a href="features.html#custom-tabs">Custom Tabs Support library</a></li>
          <li><a href="features.html#percent">Percent Support library</a></li>
          <li><a href="features.html#recommendation">App Recommendation Support library for TV</a></li>
          <li><a href="features.html#v7-preference">v7 Preference Support library</a></li>
          <li><a href="features.html#v14-preference">v14 Preference Support library</a></li>
          <li><a href="features.html#v17-preference">v17 Preference Support library for TV</a></li>
         </ul>
       </dd>

    </dl>

    <p>For a complete list of the Support Library changes, see the
    <a href="{@docRoot}sdk/support_api_diff/23/changes.html">Support
    Library API Differences Report</a>.  </p>

  </div>
</div> <!-- end of collapsible section -->



<div class="toggle-content closed">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 22.2.1</a> <em>(July 2015)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for <a href="features.html#design">Design Support library:</a></dt>
      <dd>
        <ul>
          <li>Added the {@code hide()} and {@code show()} methods to the
            {@link android.support.design.widget.FloatingActionButton} class for programmatic
            triggering of animations.  </li>
          <li>Added the {@code LENGTH_INDEFINITE} constant to the
            {@link android.support.design.widget.Snackbar} class for showing a snackbar
            until it is dismissed or another snackbar is shown. Also, added the
            {@link android.support.design.widget.Snackbar#setActionTextColor(int)} and
            {@link android.support.design.widget.Snackbar#setActionTextColor(ColorStateList)}
            methods.  </li>
          <li>Added the {@code getSelectedTabPosition()} method to the
            {@link android.support.design.widget.TabLayout} class for retrieving the currently
            selected tab. </li>
          <li>Provided a fully fluent API for the
            {@link android.support.v7.app.NotificationCompat.MediaStyle} class for method
            chaining.  </li>
           <li>Added convenience methods to the
             {@link android.support.v7.widget.RecyclerView} for batch insertion of items. </li>
         </ul>
       </dd>
    </dl>

    <p>For a complete list of the Support Library changes, see the
    <a href="{@docRoot}sdk/support_api_diff/22.2.0/changes.html">Support
    Library API Differences Report</a>.  </p>

  </div>
</div> <!-- end of collapsible section -->



<div class="toggle-content closed">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 22.2.0</a> <em>(May 2015)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Added <a href="features.html#design">Design Support library:</a></dt>
      <dd>
        <ul>
          <li>Added {@link android.support.design.widget.TextInputLayout} for showing
            {@link android.widget.EditText} hint and error text as floating labels.
          </li>
          <li>Added {@link android.support.design.widget.FloatingActionButton} for implementing a
            primary action on your interface as a
            floating action button, supporting either default or mini sizes.
          </li>
          <li>Added {@link android.support.design.widget.Snackbar} for providing lightweight
            feedback with an optional action in an animated snackbar.
          </li>
          <li>Added {@link android.support.design.widget.TabLayout} for implementing fixed and
            scrollable
           <a href="{@docRoot}design/building-blocks/tabs.html">tabs</a> as well as easy
             integration with
             {@link android.support.v4.view.ViewPager}.
          </li>
          <li>Added {@link android.support.design.widget.NavigationView} for implementing
            <a href="{@docRoot}design/patterns/navigation-drawer.html">navigation drawer</a>
             contents, including the ability to inflate menu items via a
             <a href="{@docRoot}guide/topics/resources/menu-resource.html">Menu Resource</a>.
          </li>
          <li>Added {@link android.support.design.widget.CoordinatorLayout}, a general purpose
            layout, used for building dependencies between
            sibling views and allowing easy scrolling reactions between components via
            {@link android.support.design.widget.CoordinatorLayout.Behavior}. Many of the Design
            Library components rely on being a child of a
            {@link android.support.design.widget.CoordinatorLayout}.
          </li>
          <li>Added {@link android.support.design.widget.AppBarLayout}, a container for a
            {@link android.widget.Toolbar}
            and other views (such as {@link android.support.design.widget.TabLayout}) 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.
          </li>
          <li>Added {@link android.support.design.widget.CollapsingToolbarLayout} for controlling
            how a {@link android.widget.Toolbar} collapses. A toolbar may collapse by:
            pinning components to the top of the screen while it collapses, introducing
            parallax scrolling of components such as an {@link android.widget.ImageView},
            or adding a content scrim color when the view is partially collapsed.
          </li>
       </ul>
      </dt>



      <dt>Changes for <a href="features.html#v4">v4 support library:</a></dt>
      <dd>
         <ul>

          <li>Added the
{@link android.support.v4.view.accessibility.AccessibilityEventCompat#getContentChangeTypes getContentChangeTypes()}
            and
{@link android.support.v4.view.accessibility.AccessibilityEventCompat#setContentChangeTypes setContentChangeTypes()}
            methods and related change type
            fields to the
            {@link android.support.v4.view.accessibility.AccessibilityEventCompat}
            class for accessibility event handling.
          </li>
          <li>Added the
{@link android.support.v4.media.session.PlaybackStateCompat#getActiveQueueItemId getActiveQueueItemId()},
{@link android.support.v4.media.session.PlaybackStateCompat#getCustomActions getCustomActions()},
            and
            {@link android.support.v4.media.session.PlaybackStateCompat#getExtras getExtras()}
            methods with related state fields to the
            {@link android.support.v4.media.session.PlaybackStateCompat} class for
            getting custom actions from the queue.
          </li>
          <li>Added the
{@link android.support.v4.media.session.PlaybackStateCompat.Builder#addCustomAction addCustomAction()},
{@link android.support.v4.media.session.PlaybackStateCompat.Builder#setActiveQueueItemId setActiveQueueItemId()},
            and
            {@link android.support.v4.media.session.PlaybackStateCompat.Builder#setExtras setExtras()}
            methods to the
            {@link android.support.v4.media.session.PlaybackStateCompat.Builder} class for adding
            custom actions to a playback state.
          </li>
          <li>Added the
{@link android.support.v4.media.session.PlaybackStateCompat.CustomAction#fromCustomAction fromCustomAction()} and
{@link android.support.v4.media.session.PlaybackStateCompat.CustomAction#getCustomAction getCustomAction()} methods
            to the
            {@link android.support.v4.media.session.PlaybackStateCompat.CustomAction} class
            for getting custom actions from the queue.
          </li>
          <li>Added the {@link android.support.v4.view.ViewCompat#isAttachedToWindow isAttachedToWindow()},
            {@link android.support.v4.view.ViewCompat#offsetLeftAndRight offsetLeftAndRight()}, and
            {@link android.support.v4.view.ViewCompat#offsetTopAndBottom offsetTopAndBottom()}
            methods to the {@link android.support.v4.view.ViewCompat} class for working with views.
          </li>
          <li>Added the {@link android.support.v4.view.ViewPager#addOnPageChangeListener addOnPageChangeListener()},
            {@link android.support.v4.view.ViewPager#clearOnPageChangeListeners clearOnPageChangeListeners()}, and
            {@link android.support.v4.view.ViewPager#removeOnPageChangeListener removeOnPageChangeListener()}
            methods to the {@link android.support.v4.view.ViewPager} class for responding to page
            changes.
            <p>Deprecated the
            {@link android.support.v4.view.ViewPager#setOnPageChangeListener setOnPageChangeListener()} method.</p>
          </li>
          <li>Added the
{@link android.support.v4.view.ViewParentCompat#notifySubtreeAccessibilityStateChanged notifySubtreeAccessibilityStateChanged()} method to
            the {@link android.support.v4.view.ViewParentCompat} class for notifying a view parent
            that the accessibility state of one of its descendants has changed.
          </li>
          <li>Added the {@link android.support.v4.view.ViewPropertyAnimatorCompat#translationZ translationZ()},
            {@link android.support.v4.view.ViewPropertyAnimatorCompat#translationZBy translationZBy()},
            {@link android.support.v4.view.ViewPropertyAnimatorCompat#z z()}, and
            {@link android.support.v4.view.ViewPropertyAnimatorCompat#zBy zBy()}
            methods to the {@link android.support.v4.view.ViewPropertyAnimatorCompat} class for
            adding animation.
          </li>
       </ul>
      </dd>



<dt>Changes for <a href="features.html#v7-appcompat">v7 appcompat library</a>:</dt>
      <dd>
<ul>
          <li>Added the
            {@link android.support.v7.app.AppCompatActivity#onWindowStartingSupportActionMode onWindowStartingSupportActionMode()}
            method to the
            {@link android.support.v7.app.AppCompatActivity},
            {@link android.support.v7.app.AppCompatCallback}, and
            {@link android.support.v7.app.AppCompatDialog} classes for handling action modes
            started from the current window.
          </li>

          <li>Added the
{@link android.support.v7.app.AppCompatDelegate#isHandleNativeActionModesEnabled isHandleNativeActionModesEnabled()} and
{@link android.support.v7.app.AppCompatDelegate#setHandleNativeActionModesEnabled setHandleNativeActionModesEnabled()}
           methods to the
           {@link android.support.v7.app.AppCompatDelegate} class for handling native action modes.
          </li>
       </ul>
      </dd>

    <p>For a complete list of the Support Library changes, see the
    <a href="{@docRoot}sdk/support_api_diff/22.2.0/changes.html">Support
    Library API Differences Report</a>.  </p>

    </dl>

  </div>
</div> <!-- end of collapsible section -->




<div class="toggle-content closed">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 22.1.0</a> <em>(April 2015)</em>
  </p>



  <div class="toggle-content-toggleme">
    <dl>


  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for <a href="features.html#annotations">annotations library:</a></dt>
      <dd>
        <ul>
          <li>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.
          </li>
        </ul>
      </dd>


      <dt>Changes for <a href="features.html#v4">v4 support library:</a></dt>
      <dd>
        <ul>

          <li>Added the {@link android.support.v4.graphics.ColorUtils ColorUtils} class
            to provide a set of color-related utility methods.
          </li>
          <li>Added the {@link android.support.v4.graphics.drawable.DrawableCompat#unwrap unwrap()} and
            {@link android.support.v4.graphics.drawable.DrawableCompat#wrap wrap()} methods to the
            {@link android.support.v4.graphics.drawable.DrawableCompat} class , allowing you to use
            {@link android.support.v4.graphics.drawable.DrawableCompat#setTint setTint()},
            {@link android.support.v4.graphics.drawable.DrawableCompat#setTintList setTintList()},
            and {@link android.support.v4.graphics.drawable.DrawableCompat#setTintMode setTintMode()}
            on all API level 4 or higher devices.
          </li>
          <li>Added the {@link android.support.v4.os.TraceCompat} class to
            write trace events to the system trace buffer, which can then be collected and
            visualized using the <a href="{@docRoot}tools/help/systrace.html">Systrace</a> tool.
          </li>
          <li>Added the {@link android.support.v4.util.CircularIntArray} class
            to create circular integer array data structures.
          </li>
          <li>Added the {@link android.support.v4.util.CircularArray#clear clear()},
            {@link android.support.v4.util.CircularArray#removeFromStart removeFromStart()},
            and {@link android.support.v4.util.CircularArray#removeFromEnd removeFromEnd()}
            methods to the {@link android.support.v4.util.CircularArray} class. Also, changed the
            existing methods in this class to be non-final.
          </li>
          <li>Added the {@link android.support.v4.view.InputDeviceCompat}
            as a helper class to access data in the
            {@link android.support.v4.view.InputDeviceCompat} class.
          </li>
          <li>Added the {@link android.support.v4.view.LayoutInflaterCompat}
            class as a helper class to access data in the
            {@link android.support.v4.view.LayoutInflaterCompat} class
            and added the {@link android.support.v4.view.LayoutInflaterFactory} interface.
          </li>
          <li>Added classes, methods, and interfaces to support nested scrolling.
             <ul>
               <li>Added the {@link android.support.v4.view.NestedScrollingChildHelper}
               and {@link android.support.v4.view.NestedScrollingParentHelper}
               helper classes for implementing nested scrolling parent and child views.</li>
               <li>Added the {@link android.support.v4.view.NestedScrollingChild}
               interface to be implemented by {@link android.view.View} subclasses.</li>
               <li>Added the {@link android.support.v4.view.NestedScrollingParent}
               and {@link android.support.v4.view.ScrollingView} interfaces to support
               scrolling operations and provide scroll related APIs.</li>
               <li>Added the
                {@link android.support.v4.view.ViewGroupCompat#getNestedScrollAxes
                getNestedScrollAxes()} method to the {@link android.support.v4.view.ViewGroupCompat}
                class.</li>
               <li>Added methods to the {@link android.support.v4.view.ViewParentCompat} class to
                support nested scrolling.
               </li>
               <li>Added the {@link android.support.v4.widget.NestedScrollView}
                 class to support nested scrolling parent and child on both new and old versions of
                 Android.
               </li>
              </ul>
          </li>
          <li>Added methods and constants to the {@link android.support.v4.view.MotionEventCompat}
            class for getting axis values and event source.
         </li>
         <li>Updated the {@link android.support.v4.view.accessibility.AccessibilityNodeInfoCompat}
          class to add methods for errors, content invalidation and labels.
         </li>
         <li>Added the following interpolation classes for animation:
           {@link android.support.v4.view.animation.FastOutLinearInInterpolator},
           {@link android.support.v4.view.animation.FastOutSlowInInterpolator},
           {@link android.support.v4.view.animation.LinearOutSlowInInterpolator},
           {@link android.support.v4.view.animation.LinearOutSlowInInterpolator}, and
           {@link android.support.v4.view.animation.PathInterpolatorCompat}.
         </li>
         <li>Added the {@link android.support.v4.widget.Space} class to create gaps between
           components in general purpose layouts. This class is deprecated in the gridlayout library.
         </li>
         <li>Added the {@link android.support.v4.widget.TextViewCompat} class for accessing
           features in a {@link android.widget.TextView}.
         </li>
         <li>Added a displacement parameter to the
           {@link android.support.v4.widget.EdgeEffectCompat#onPull onPull()} method in the
           {@link android.support.v4.widget.EdgeEffectCompat} class.
         </li>

       </ul>
      </dd>


  <dt>Changes for <a href="features.html#v7-appcompat">v7 appcompat library</a>:</dt>
      <dd>
        <ul>
          <li>Added tint support to appcompat widgets, including
            {@link android.support.v7.widget.AppCompatAutoCompleteTextView},
            {@link android.support.v7.widget.AppCompatButton},
            {@link android.support.v7.widget.AppCompatCheckBox},
            {@link android.support.v7.widget.AppCompatCheckedTextView},
            {@link android.support.v7.widget.AppCompatEditText},
            {@link android.support.v7.widget.AppCompatMultiAutoCompleteTextView},
            {@link android.support.v7.widget.AppCompatRadioButton},
            {@link android.support.v7.widget.AppCompatRatingBar},
            {@link android.support.v7.widget.AppCompatSpinner}, and
            {@link android.support.v7.widget.AppCompatTextView}.
          </li>
          <li>Updated the {@link android.support.v7.app.AppCompatActivity} as the base
            class for activities that use the support library action bar features. This class
            replaces the deprecated {@link android.support.v7.app.ActionBarActivity}.
          </li>
          <li>Added the
            {@link android.support.v7.app.AppCompatCallback} interface
            to be implemented for AppCompat to be able to perform callbacks.
          </li>
            <li>Added the
            {@link android.support.v7.app.AppCompatDelegate} abstract class
            as a delegate you can use to extend AppCompat's support to any activity.
          </li>
          <li>Added the
            {@link android.support.v7.app.AppCompatDialog} class
            as the base class for AppCompat themed dialogs.
          </li>
          <li>Added the spinner style
            {@link android.support.v7.app.AlertDialog} and
            {@link android.support.v7.app.AlertDialog.Builder} classes to provide an AppCompat
            themed {@link android.app.AlertDialog}.
          </li>
          <li>Added the {@link android.support.v7.graphics.Palette.Builder} class
            for generating {@link android.support.v7.graphics.Palette} instances.
            <ul>
              <li>Added the
                {@link android.support.v7.graphics.Palette#from}
                method to the {@link android.support.v7.graphics.Palette} class to
                start generating a Palette with the returned
                {@link android.support.v7.graphics.Palette.Builder} instance.
              </li>
              <li>Deprecated the {@link android.support.v7.graphics.Palette#generate generate()} and
                {@link android.support.v7.graphics.Palette#generateAsync generateAsync()} methods.
              </li>
             </ul>
           </li>

           <li>Added the
             {@link android.support.v7.widget.GridLayout.Spec#getAbsoluteAlignment
             getAbsoluteAlignment()} method to the {@link android.support.v7.widget.GridLayout.Spec}
             class.
           </li>
           <li>Deprecated use of <code>app:theme</code> for styling
             {@link android.support.v7.widget.Toolbar}. You can now use
             <code>android:theme</code> for toolbars on all API level 7 and higher devices and
             <code>android:theme</code> support for all widgets on API level 11 and higher devices.
           </li>
        </ul>
      </dd>


      <dt>Changes for <a href="features.html#v17-leanback">v17 leanback library</a>:</dt>
      <dd>
        <ul>
          <li> Added {@link android.support.v17.leanback.app.GuidedStepFragment},
            {@link android.support.v17.leanback.widget.GuidanceStylist} and
            {@link android.support.v17.leanback.widget.GuidedActionsStylist} to support
            creating multi-step decision flows.
          </li>
        </ul>
      </dd>


      <dt>Changes for <a href="features.html#v7-recyclerview">v7 recyclerview library</a>:</dt>
      <dd>
        <ul>
           <li>Added {@link android.support.v7.util.SortedList} classes to display items in
             a list order and provide notification of changes to the list.
           </li>
           <li>Added the {@link android.support.v7.widget.util.SortedListAdapterCallback} class
             that can bind a sorted list to a
             {@link android.support.v7.widget.RecyclerView.Adapter} class.
           </li>
        </ul>
      </dd>


      <dt>Changes for <a href="features.html#v8-renderscript">v8 renderscript library</a>:</dt>
      <dd>
        <ul>
          <li>Added the {@link android.support.v8.renderscript.ScriptIntrinsicHistogram} class for
            use as a histogram filter.</li>
          <li>Added the {@link android.support.v8.renderscript.ScriptIntrinsicResize} class for
            performing a resize of a 2D allocation.
          </li>
        </ul>
      </dd>

    </dl>


  </div>
</div> <!-- end of collapsible section -->



<div class="toggle-content closed">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 22</a> <em>(March 2015)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for <a href="features.html#v4">v4 support library:</a></dt>
      <dd>
        <ul>
          <li>Updated the {@link android.support.v4.content.res.ResourcesCompat#getDrawable
            getDrawable()} method to return a drawable object for a specified specific resource ID,
            screen density, and theme.
          </li>
          <li>Added the {@link android.support.v4.view.ViewCompat#setImportantForAccessibility
            setImportantForAccessibility()} method so you can indicate if a view should trigger
            accessibility events.
          </li>
          <li>Added the {@link android.support.v4.widget.DrawerLayout#getStatusBarBackgroundDrawable
            getStatusBarBackgroundDrawable()} method so you can get the status bar background
            drawable.
          </li>
          <li>Added methods to the
            {@link android.support.v4.app.NotificationCompat.CarExtender.UnreadConversation}
            class so Android Auto messaging apps can retrieve additional notification data.
          </li>
          <li>Added the {@link android.support.v4.widget.SwipeRefreshLayout#getProgressCircleDiameter
            getProgressCircleDiameter()} method to return the diameter of a circle layout.
          </li>
          <li>Changed the default {@link android.support.v4.widget.DrawerLayout DrawerLayout}
            status bar color to {@link android.R.attr#colorPrimaryDark}.
          </li>
        </ul>
      </dd>

      <dt>Changes for <a href="features.html#v7-appcompat">v7 appcompat library</a>:</dt>
      <dd>
        <ul>
          <li>Added the spinner style
            {@link android.support.v7.appcompat.R.style#Base_Widget_AppCompat_Spinner_Underlined}.</li>
          <li>Added tinted widgets styles with
            {@link android.support.v7.appcompat.R.style#Widget_AppCompat_AutoCompleteTextView},
            {@link android.widget.MultiAutoCompleteTextView},
            {@link android.support.v7.appcompat.R.style#TextAppearance_AppCompat_Button}, and
            {@link android.support.v7.appcompat.R.style#Base_Widget_AppCompat_RatingBar}.</li>
        </ul>
      </dd>

      <dt>Changes for <a href="features.html#v17-leanback">v17 leanback library</a>:</dt>
      <dd>
        <ul>
          <li>Added the {@link android.support.v17.leanback.widget.ListRowPresenter#getRecycledPoolSize
            getRecycledPoolSize()} and
            {@link android.support.v17.leanback.widget.ListRowPresenter#setRecycledPoolSize
            setRecycledPoolSize()} methods to allow customized recycled pool sizes.</li>
          <li>Added the {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT} attribute to the
            layout width setting to support wrapped content for title icons.</li>
          <li>Defined {@link android.support.v17.leanback.R.transition} in XML to
            improve transition updates.  </li>
          <li>Enabled support for right to left layouts.</li>
          <li>Added the play and pause media key events support to the
            {@link android.support.v17.leanback.app.PlaybackOverlayFragment} class.</li>
          <li>Added enter and return transitions to the
            {@link android.support.v17.leanback.app.BrowseFragment} class and the
            {@link android.support.v17.leanback.app.DetailsFragment} class.</li>
          <li>Added the {@link android.support.v17.leanback.widget.ArrayObjectAdapter#replace
            replace()} method to replace items in an object’s adapter array. </li>
        </ul>
      </dd>


      <dt>Changes for <a href="features.html#v7-mediarouter">v7 mediarouter library</a>:</dt>
      <dd>
        <ul>
          <li>Updated Google Cast icons to use the
            <a href="{@docRoot}training/material/index.html">material design</a> style.</li>
          <li>Updated all the icons used in the {@link android.media.MediaRouter} dialogs to use the
            <a href="{@docRoot}training/material/index.html">material design</a> style.</li>
        </ul>
      </dd>


      <dt>Changes for <a href="features.html#v7-recyclerview">v7 recyclerview library</a>:</dt>
      <dd>
        <ul>
          <li>Added the {@link android.support.v7.widget.RecyclerView.ViewHolder#getLayoutPosition
            getlayoutPosition()}
            and {@link android.support.v7.widget.RecyclerView.ViewHolder#getAdapterPosition
            getadapterPosition()} methods to the {@link android.support.v7.widget.RecyclerView}
            class.</li>
          <li>Deprecated the <code>classgetChildPosition()</code> and
            <code>findViewHolderForPosition()</code> methods in the
            {@link android.support.v7.widget.RecyclerView} class. </li>
          <li>Deprecated the <code>getPosition()</code> method in the
            {@link android.support.v7.widget.RecyclerView.ViewHolder} class. </li>
          <li>Deprecated the <code>getViewPosition()</code> method in the
            {@link android.support.v7.widget.RecyclerView.LayoutParams} class. </li>
        </ul>
      </dd>

  </div>
</div>




<div class="toggle-content closed">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 21.0.3</a> <em>(December 2014)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for <a href="features.html#v4">v4 support library:</a></dt>
      <dd>
        <ul>
          <li>Added several {@link android.support.v4.app.NotificationCompat.WearableExtender}
          methods to improve the display of barcodes in notifications on wearable devices.
             <ul>
             <li>{@link android.support.v4.app.NotificationCompat.WearableExtender#getHintScreenTimeout getHintScreenTimeout()}</li>
             <li>{@link android.support.v4.app.NotificationCompat.WearableExtender#setHintScreenTimeout setHintScreenTimeout()}</li>
             <li>{@link android.support.v4.app.NotificationCompat.WearableExtender#getHintAvoidBackgroundClipping getHintAvoidBackgroundClipping()}</li>
             <li>{@link android.support.v4.app.NotificationCompat.WearableExtender#setHintAvoidBackgroundClipping setHintAvoidBackgroundClipping()}</li>
             </ul>
          </li>
        </ul>
      </dd>

  </div>
</div>



<div class="toggle-content closed">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 21.0.2</a> <em>(November 2014)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for <a href="features.html#v4">v4 support library:</a></dt>
      <dd>
        <ul>
          <li>Added {@link android.support.v4.app.NotificationCompat.CarExtender}
          class to support Android Auto extensions to notifications.</li>
        </ul>
      </dd>
      <dt>Changes for <a href="features.html#v7-appcompat">v7 appcompat library</a>:</dt>
      <dd>
        <ul>
          <li>Added the {@link android.support.v7.widget.PopupMenu} constructor to support new popup
          menus.</li>
          <li>Added support for a Collapse icon description in the {@link android.support.v7.widget.Toolbar}
          class.</li>
          <li>Updated the {@link android.support.v7.widget.SearchView} widget to support displaying
          the {@link android.support.v7.mediarouter.R.attr#commitIcon}. </li>
          <li>Removed the <code>buttonGravity</code> attribute from the
          {@link android.support.v7.widget.Toolbar} class. </li>
        </ul>
      </dd>
      <dt>Changes for <a href="features.html#v7-cardview">v7 cardview library</a>:</dt>
      <dd>
        <ul>
          <li>Added {@link android.support.v7.widget.CardView#setCardBackgroundColor} API to
          support changing the background color of the {@link android.support.v7.widget.CardView}.</li>
          <li>Changed the {@link android.support.v7.widget.CardView} to more accurately report its
          opacity value as {@link android.graphics.PixelFormat#TRANSLUCENT}.</li>
        </ul>
      </dd>
      <dt>Changes for <a href="features.html#v7-recyclerview">v7 recyclerview
        library</a>:</dt>
      <dd>
        <ul>
          <li>Added {@link android.support.v7.widget.RecyclerView#TOUCH_SLOP_DEFAULT} and
          {@link android.support.v7.widget.RecyclerView#TOUCH_SLOP_PAGING} constants
          to the {@link android.support.v7.widget.RecyclerView} class
          to support touch slop configurations for paging.</li>
        </ul>
      </dd>
      <dt>Changes for <a href="features.html#v17-leanback">v17 leanback library</a>:</dt>
      <dd>
        <ul>
          <li>Added support to generate v4 code fragments. </li>
          <li>Changed the secondary text color on {@link android.support.v7.widget.CardView}. </li>
        </ul>
      </dd>
    </dl>
  </div>
</div>



<div class="toggle-content closed">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 21.0.1</a> <em>(November 2014)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Added <a href="{@docRoot}tools/support-library/features.html#multidex">
      multidex support library</a> to support multiple
      <a href="https://source.android.com/devices/tech/dalvik/">Dalvik</a> Executable (DEX) files
      for multi-dex file support prior to Android 5.0.
      </dt>
    </dl>
  </div>
</div>




<div class="toggle-content closed">
  <p id="rev21"><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 21</a> <em>(October 2014)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for <a href="features.html#v4">v4 support library:</a></dt>
      <dd>
        <ul>
          <li>Added support for {@link android.support.v4.app.Fragment}
              transitions for devices running Android 5.0 (API level 21).
              Be aware that transitions have no effect on devices running
              Android 4.4 and lower.
          </li>
          <li>Added {@link android.support.v4.provider.DocumentFile} to ease
              the transition from {@link java.io.File}
              while working with document trees. However, this class demands
              more processing overhead compared to the platform's
              {@link android.provider.DocumentsContract} API added in
              Android 4.4 (API level 19). So you should switch to using {@link
              android.provider.DocumentsContract} when running on Android 4.4
              and higher.</li>
        </ul>
      </dd>
      <dt>Changes for <a href="features.html#v7-appcompat">v7 appcompat
        library</a>:</dt>
      <dd>
        <ul>
          <li>Added support for <a href="{@docRoot}design/material/">material
              design</a> user interfaces.</li>
          <li>Added {@link android.support.v7.widget.Toolbar}, which generalizes
              the functionality of {@link android.support.v7.app.ActionBar} for
              use within app layouts.</li>
          <li>Updated {@link android.support.v7.app.ActionBarDrawerToggle},
              which contains the menu-to-arrow animation</li>
          <li>Updated common user interface widgets to allow tinting via theme
              attributes when running on pre-Android 5.0 devices</li>
          <li>Added {@link android.support.v7.widget.SwitchCompat}, a backport
              of the {@link android.widget.Switch} widget that was added in
              Android 4.0 (API level 14).</li>
        </ul>
      </dd>
      <dt>New <a href="features.html#v7-cardview">v7 cardview library</a>:</dt>
      <dd>
        <ul>
          <li>Added the {@link android.support.v7.widget.CardView} widget, which
            provides a material design-compatible implementation for displaying
            data items.</li>
        </ul>
      </dd>
      <dt>New <a href="features.html#v7-recyclerview">v7 recyclerview
        library</a>:</dt>
      <dd>
        <ul>
          <li>Added the {@link android.support.v7.widget.RecyclerView} widget,
            which provides a flexible list view for providing a limited window
            into a large data set.</li>
        </ul>
      </dd>
      <dt>New <a href="features.html#v7-palette">v7 palette library</a>:</dt>
      <dd>
        <ul>
          <li>Added {@link android.support.v7.graphics.Palette} class,
          which lets you extract prominent colors from an image.</li>
        </ul>
      </dd>
      <dt>New <a href="features.html#v17-leanback">v17 leanback library</a>:</dt>
      <dd>
        <ul>
          <li>Added support for building TV user interfaces, including
            {@link android.support.v17.leanback.app.BrowseFragment},
            {@link android.support.v17.leanback.app.DetailsFragment}, and
            {@link android.support.v17.leanback.app.PlaybackOverlayFragment}.
            For more information about using these user interface widgets,
            see <a href="{@docRoot}training/tv/playback/index.html">Building TV
            Playback Apps</a>.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>

<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 20</a> <em>(July 2014)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Added extended notification support for Android Wear in
            {@link android.support.v4.app.NotificationCompat.WearableExtender}, which allows you
            to specify wearable-specific features in your notifications.</li>
          <li>Added {@link android.support.v4.app.NotificationCompat.Action.WearableExtender},
            which allows actions to be added on wearable notifications.</li>
          <li>Added {@link android.support.v4.app.NotificationManagerCompat}, which allows you
            to issue notifications that properly support wearable features.</li>
          <li>Added {@link android.support.v4.app.RemoteInput}, which allows a handheld device
            to receive voice input from a notification that appears on a wearable device.</li>
          <li>Improved the handling of touch feedback in
            {@link android.support.v4.widget.SwipeRefreshLayout}.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>

<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 19.1.0</a> <em>(March 2014)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Added the {@link android.support.v4.widget.SwipeRefreshLayout} class,
              which enables users to refresh the contents of a view with a vertical
              swipe gesture.</li>
          <li>Fixed accessibility issues with navigation drawers.</li>
        </ul>
      </dd>

      <dt>Changes for v7 appcompat library:</dt>
      <dd>
        <ul>
          <li>Fixed background issues with the action bar.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>

<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 19.0.1</a> <em>(December 2013)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Improved {@link android.support.v4.print.PrintHelper} by adding asynchronous
            handling of printing.</li>
          <li>Fixed the {@link android.support.v4.widget.DrawerLayout} class approximation of
            the {@link android.view.View#addChildrenForAccessibility addChildrenForAccessibility()}
            method.</li>
          <li>Fixed slide drawable mirroring in {@link
            android.support.v4.app.ActionBarDrawerToggle}.</li>
          <li>Fixed off-by-one issue when removing an item from a collection iterator.</li>
        </ul>
      </dd>

      <dt>Changes for v7 mediarouter library:</dt>
      <dd>
        <ul>
          <li>Improved route identification by using full component name in the {@link
            android.support.v7.media.MediaRouteProvider.ProviderMetadata}.</li>
          <li>Updated {@link android.support.v7.app.MediaRouteChooserDialog} to hide disabled
            routes.</li>
        </ul>
      </dd>

      <dt>Changes for <a href="features.html#v8-renderscript">v8 renderscript library</a></dt>
      <dd>
        <ul>
          <li>Added error propagation for the RenderScript thunking layer.</li>
        </ul>
      </dd>

    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 19</a> <em>(October 2013)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>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.</li>
          <li>Added {@link android.support.v4.print.PrintHelper} class that works with the
            Print APIs to print images with a minimum of code.</li>
          <li>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}.</li>
          <li>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}.</li>
          <li>Added helper class {@link android.support.v4.view.ScaleGestureDetectorCompat} for
            accessing new scaling gesture methods.</li>
          <li>Fixed problem with {@link android.support.v4.app.ActionBarDrawerToggle} in
            right-to-left language displays.</li>
          <li>Modified {@link android.support.v4.widget.AutoScrollHelper} option to consume
            touch events or allow them to be passed through to other views.</li>
        </ul>
      </dd>

      <dt>Changes for v7 mediarouter library:</dt>
      <dd>
        <ul>
          <li>Added support for media playback queuing, setting HTTP header values and media
            playback duration.</li>
          <li>Added explicit start, get, and end session actions for explicitly managing media
            playback sessions with media router.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>

<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 18</a> <em>(July 2013)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
      <ul>
        <li>User interface
          <ul>
            <li>Added {@link android.support.v4.text.BidiFormatter} for handling
              text strings that combine right to left and left to right-formatted text.</li>
            <li>Modified {@link android.support.v4.view.ViewPager} to better handle cases where the
              pager has a measured width of zero in the initial layout processing.</li>
            <li>Modified {@link android.support.v4.widget.DrawerLayout} and
              {@link android.support.v4.widget.SlidingPaneLayout} to not throw exceptions for
              measurement while the project code is being edited.</li>
          </ul>
        </li>

        <li>Accessibility
          <ul>
            <li>Added {@link android.support.v4.widget.ExploreByTouchHelper} to simplify the
              implementation of accessibility for custom views.</li>
            <li>Fixed a problem with {@link android.support.v4.view.ViewPager} incorrectly
              populating {@link
              android.support.v4.view.accessibility.AccessibilityEventCompat#TYPE_VIEW_SCROLLED
              TYPE_VIEW_SCROLLED} accessibility events.</li>
            <li>Fixed a null pointer exception in {@link android.support.v4.view.ViewPager} when
              populating an accessibility event.</li>
            <li>Simplified {@link android.support.v4.view.accessibility.AccessibilityNodeInfoCompat}
              by changing {@link java.lang.CharSequence} inputs to {@link java.lang.String} objects.
              </li>
            <li>Deprecated an {@link android.support.v4.view.accessibility.AccessibilityRecordCompat}
              constructor that used an {@link java.lang.Object} as input.</li>
          </ul>
        </li>

        <li>Media
          <ul>
            <li>Added {@link android.support.v4.media.TransportMediator} helper class to manage
              media transport control, such as play, pause, skip and other media actions.</li>
            <li>Added {@link android.support.v4.hardware.display.DisplayManagerCompat} for managing
              display output to one or more device displays.</li>
          </ul>
        </li>

        <li>Other changes
        <ul>
            <li>Added {@link android.support.v4.content.WakefulBroadcastReceiver} helper class for
              implementing a common pattern of detecting a device wakeup event and passing work off
              to a {@link android.app.Service} while ensuring that the device does not go back to
              sleep before the handoff is complete.</li>
            <li>Added two new APIs,
              {@link android.support.v4.content.AsyncTaskLoader#commitContentChanged
              commitContentChanged()} and
              {@link android.support.v4.content.AsyncTaskLoader#rollbackContentChanged
              rollbackContentChanged()}, to {@link android.support.v4.content.AsyncTaskLoader} to
              help deal with background updates for data changes that are subsequently canceled.
              </li>
          </ul>
        </li>
      </ul>
      </dd>

      <dt>New v7 appcompat library:</dt>
      <dd>
        <ul>
          <li>Added {@link android.support.v7.app.ActionBar} to allow implementation of the
            action bar user interface <a href="{@docRoot}design/patterns/actionbar.html">design
            pattern</a> back to Android 2.1 (API level 7) and higher. Use of this class requires
            that you implement your activity by extending the new
            {@link android.support.v7.app.ActionBarActivity} class.</li>
        </ul>
      </dd>

      <dt>New v7 mediarouter library:</dt>
      <dd>
        <p>Added a new mediarouter library that provides support for the <a
        href="https://developers.google.com/cast/">Google Cast developer preview</a>.
        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 <a
        href="{@docRoot}tools/support-library/features.html#v7-mediarouter">V7
        mediarouter library</a> for more information. </p>

        <p class="caution">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 <a href="https://developers.google.com/cast/">Google Cast
        developer preview</a>.</p>
      </dd>

    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 13</a> <em>(May 2013)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Added {@link android.support.v4.widget.DrawerLayout} for creating a
            <a href="{@docRoot}training/implementing-navigation/nav-drawer.html">Navigation
            Drawer</a> that can be pulled in from the edge of a window.</li>
          <li>Added {@link android.support.v4.widget.SlidingPaneLayout} widget for creating linked
            summary and detail views that appropriately adapt to various screen sizes.</li>
          <li>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}.</li>
          <li>Added {@link android.support.v4.widget.ViewDragHelper} as a new common component
            for dragging views within a parent view.</li>
          <li>Added {@link android.support.v4.widget.ScrollerCompat} to provide {@link
            android.widget.Scroller} and {@link android.widget.OverScroller} compatibility support.
            </li>
          <li>Added {@link android.support.v4.content.FileProvider} to allow sharing of private
            files between applications.</li>
          <li>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()}.
            </li>
          <li>Fixed an issue with {@link android.support.v4.view.ViewPager} children drawing sort
            order.</li>
          <li>Fixed {@link android.support.v4.view.GestureDetectorCompat} to dispatch missing
            {@link android.view.GestureDetector.SimpleOnGestureListener#onSingleTapConfirmed} calls
            between tap timeout and long press events.</li>
        </ul>
      </dd>

      <dt>New v7 gridlayout library:</dt>
      <dd>
        <ul>
          <li>Added {@link android.support.v7.widget.GridLayout} to provide support for the
            {@link android.widget.GridLayout} layout object.</li>
          <li>Added {@link android.support.v7.widget.Space} which can be used to create blank areas
            within a {@link android.support.v7.widget.GridLayout} layout object.</li>
        </ul>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 12</a> <em>(February 2013)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Improved interaction behavior for {@link android.support.v4.view.ViewPager}.</li>
          <li>Fixed a bug that could cause {@link android.support.v4.view.ViewPager} to select the
            wrong page.</li>
          <li>Fixed use of {@link android.support.v4.view.ViewPager#removeView removeView()} method
            during layout for {@link android.support.v4.view.ViewPager}.</li>
          <li>Fixed issue with {@link android.support.v4.widget.SearchViewCompat} where using the
            back button to dismiss does not clear the search text. This fix only applies to
            host API levels 14 and higher.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 11</a> <em>(November 2012)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>User Interface
            <ul>
              <li>Added support for nested {@link android.support.v4.app.Fragment} classes.</li>
              <li>Added improvements to {@link android.support.v4.app.FragmentManager} debugging.
                </li>
              <li>Fixed problem in {@link android.support.v4.app.FragmentTabHost} where fragment
                and tab interaction could result in a {@link android.widget.ListView} state loss.
                </li>
              <li>Fixed issue with user-visible hint in
                {@link android.support.v4.app.FragmentStatePagerAdapter}.</li>
              <li>Added {@link android.support.v4.view.ViewPager.PageTransformer PageTransformer}
                interface to {@link android.support.v4.view.ViewPager} to allow applications to
                supply a custom transition behavior for scrolling.</li>
              <li>Added new features and fixes to {@link android.support.v4.app.TaskStackBuilder}
                from current release.</li>
              <li>Fixed {@link android.support.v4.view.PagerTitleStrip} to correctly track the
                {@link android.support.v4.view.PagerAdapter} currently in use.</li>
              <li>Fixed display flickering, positioning, and text clipping problems with
                {@link android.support.v4.view.PagerTitleStrip}.</li>
              <li>Fixed {@link android.support.v4.view.PagerTabStrip} to properly respect padding
                when drawing an underline.</li>
            </ul>
          </li>
          <li>Accessibility
            <ul>
              <li>Added support for new accessibility gesture and touch event types in
                {@link android.support.v4.view.accessibility.AccessibilityEventCompat}.</li>
              <li>Added support for new accessibility APIs in
                {@link android.support.v4.view.ViewCompat}.</li>
              <li>Added support for {@link android.support.v4.view.ViewCompat#performAccessibilityAction
                performAccessibilityAction()} method to {@link android.support.v4.view.ViewCompat}.
                </li>
            </ul>
          </li>
          <li>Added support for gestures with {@link android.support.v4.view.GestureDetectorCompat}.
            </li>
          <li>Added support for performing atomic operations on files using a new
            {@link android.support.v4.util.AtomicFile} class.</li>
          <li>Added support for the full set of {@code make} methods in
            {@link android.support.v4.content.IntentCompat}.</li>
          <li>Added {@link android.support.v4.util.LruCache#trimToSize trimToSize()} method in
            {@link android.support.v4.util.LruCache} utility class.</li>
          <li>Updated {@link android.support.v4.net.ConnectivityManagerCompat} to get NetworkInfo
            from a {@link android.net.ConnectivityManager#CONNECTIVITY_ACTION}
            broadcast.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 10</a> <em>(August 2012)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Added support for notification features introduced in Android 4.1 (API level 16) with
          additions to {@link android.support.v4.app.NotificationCompat}.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 9</a> <em>(June 2012)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>

          <li>User Interface Support
            <ul>
              <li>Added {@link android.support.v4.view.PagerTabStrip} support, providing enhanced
functionality beyond {@link android.support.v4.view.PagerTitleStrip}.</li>
              <li>Fixed various bugs for {@link android.support.v4.view.PagerTitleStrip} and
{@link android.support.v4.view.PagerTabStrip}, including {@link
android.widget.TextView#setAllCaps setAllCaps} option, title alignment,
appearance improvements, minimum width constraints and touch navigation issues.</li>
              <li>Added support for {@link android.support.v4.view.ViewPager} page gutters, which
helps the {@link android.support.v4.view.ViewPager} class provide paging support for content with
a large horizontal scroll range, such as a map.</li>
              <li>Fixed numerous bugs for {@link android.support.v4.view.ViewPager}, including size
and data set change problems, page positioning, user interaction, scroll tracking and keyboard
navigation problems.</li>
              <li>Fixed many bugs for {@link android.support.v4.app.Fragment}, including proper
handling of {@link android.support.v4.app.Fragment#onActivityResult onActivityResult()} when
the target fragment no longer exists, dispatching selection events to invisible fragments, improved
{@link android.support.v4.app.FragmentTransaction#replace FragmentTransaction.replace()} behavior
and added better state handling for fragments being moved out of view.</li>
              <li>Added support for the {@link
android.support.v4.view.ViewCompat postOnAnimation()} method in {@link
android.support.v4.view.ViewCompat}.</li>
              <li>Updated {@link android.support.v4.app.NavUtils} to use Android 4.1 (API level 16)
<em>Up</em> navigation functionality when available.</li>
            </ul>
          </li>

          <li>Accessibility
            <ul>
              <li>Updated accessibility support classes, including {@link
android.support.v4.view.accessibility.AccessibilityNodeInfoCompat}, to follow fixes made in Android
4.1 (API level 16).</li>
              <li>Added support for accessibility scroll actions in {@link
android.support.v4.view.ViewPager}.</li>
            </ul>
          </li>

          <li>General improvements
            <ul>
              <li>Updated {@link android.support.v4.app.TaskStackBuilder} to reflect API changes in
Android 4.1 (API level 16).</li>
              <li>Enhanced {@link android.support.v4.app.TaskStackBuilder} to allow it to be used
from a Service.</li>
              <li>Added support for {@link android.support.v4.content.IntentCompat EXTRA_HTML_TEXT}
to {@link android.support.v4.app.ShareCompat}.</li>
              <li>Updated {@link android.support.v4.app.NotificationCompat.Builder} to support the
{@link android.support.v4.app.NotificationCompat.Builder#setNumber setNumber()} method.</li>
              <li>Added support in {@link android.support.v4.net.ConnectivityManagerCompat} for the
{@link android.support.v4.net.ConnectivityManagerCompat#isActiveNetworkMetered
isActiveNetworkMetered()} method.</li>
            </ul>
          </li>
        </ul>
      </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 8</a> <em>(April 2012)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Fixed intent flags for {@link android.app.PendingIntent} objects generated
            by {@link android.support.v4.app.TaskStackBuilder}.</li>
          <li>Removed unused attributes from the gridlayout library projects to make sure
            the library can be built with API level 7 and higher.</li>
          <li>Added {@code .classpath} and {@code .project} files for the gridlayout
            library project.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 7</a> <em>(March 2012)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Added {@link android.support.v4.app.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
new {@link android.widget.ShareActionProvider} in Android 4.0.</li>
          <li>Added {@link android.support.v4.app.NavUtils} and {@link
android.support.v4.app.TaskStackBuilder} to provide support for implementing the
<a href="{@docRoot}design/index.html">Android Design</a> guidelines for navigation. These
additions include a way to implement the action bar's <em>Up</em> button across versions.
For an example implementation of this pattern, see the AppNavigation sample in
({@code <em>&lt;sdk&gt;</em>/samples/<em>&lt;platform&gt;</em>/AppNavigation}).</li>
          <li>Added {@link android.support.v4.app.NotificationCompat.Builder} to provide a
compatibility implementation of Android 3.0's {@link android.app.Notification.Builder} helper class
for creating standardized system notifications.</li>
        </ul>
      </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 6</a> <em>(December 2011)</em>
  </p>
  <div class="toggle-content-toggleme">

    <p class="note"><strong>Note:</strong> Reference for support library APIs are now available with
    the framework references, for example: {@link android.support.v4.app}.</p>
<dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Changes to ViewPager:
            <ul>
              <li>Added extra decorative view support for {@link android.support.v4.view.ViewPager}.
                Decorative views may be supplied as child views of a pager in XML layout.</li>
              <li>Added {@link android.support.v4.view.PagerAdapter#getPageTitle
                PagerAdapter.getPageTitle()} to supply title strings for pages, which defaults to no
                title for each page.</li>
              <li>Added {@link android.support.v4.view.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.</li>
              <li>Updated {@link android.support.v4.view.PagerAdapter} methods to take ViewGroup
                objects, rather than View to avoid class casting in adapter implementations.</li>
              <li>Updated {@link android.support.v4.view.ViewPager} to use Launcher-style
                fling behavior.</li>
              <li>Bug fixes for user interface interaction and test automation.</li>
            </ul>
          </li>

          <li>Support for Fragments:
            <ul>
              <li>Changed {@code setStartDeferred()} method to {@link
                android.support.v4.app.Fragment#setUserVisibleHint}.</li>
              <li>Added deferred start for off-screen pages to improve performance.</li>
            </ul>
          </li>

          <li>Support for Accessiblity APIs:
            <ul>
              <li>Updated {@link android.support.v4.view.AccessibilityDelegateCompat} methods
                to return empty lists instead of null.</li>
              <li>Added new APIs needed by the v4 samples.</li>
            </ul>
          </li>

        </ul>
      </dd>
    </dl>
  </div>
</div>

<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 5</a> <em>(December 2011)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Support for Accessiblity APIs:
            <ul>
              <li>Added {@link android.support.v4.view.AccessibilityDelegateCompat}
              to support {@link android.view.View.AccessibilityDelegate}.</li>

              <li>Added {@link android.support.v4.view.accessibility.AccessibilityEventCompat}
              to support {@link android.view.accessibility.AccessibilityEvent}.</li>

              <li>Added {@link android.support.v4.view.accessibility.AccessibilityManagerCompat}
              to support {@link android.view.accessibility.AccessibilityManager}.</li>

              <li>Added {@link android.support.v4.view.accessibility.AccessibilityNodeInfoCompat}
              to support {@link android.view.accessibility.AccessibilityNodeInfo}.</li>

              <li>Added {@link android.support.v4.view.accessibility.AccessibilityRecordCompat}
              to support {@link android.view.accessibility.AccessibilityRecord}.</li>

              <li>Added {@link
              android.support.v4.accessibilityservice.AccessibilityServiceInfoCompat}
              to support {@link android.accessibilityservice.AccessibilityServiceInfo}.</li>

              <li>Added {@link android.support.v4.view.ViewGroupCompat}
              to support accessibility features in {@link android.view.ViewGroup}.
              </li>

              <li>Modified {@link android.support.v4.view.ViewCompat}
              to support accessibility features in {@link android.view.View}.</li>
            </ul>
          </li>

          <li>Changes to ViewPager:
            <ul>
              <li>Added support for margins between pages.
              An optional {@link android.graphics.drawable.Drawable} can be provided
              to fill the margins.</li>
              <li>Added support for {@link android.widget.EdgeEffect}.</li>
              <li>Added support for keyboard navigation</li>
              <li>Added support to control how many pages are kept to either side
              of the current page.</li>
              <li>Improved touch physics.</li>
              <li>Bug fixes for user interface behavior.</li>
            </ul>
          </li>
        </ul>
      </dd>
    </dl>
  </div>
</div>

<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 4</a> <em>(October 2011)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Added <code>EdgeEffectCompat</code> to
          support {@link android.widget.EdgeEffect}.</li>

          <li>Added <code>LocalBroadcastManager</code> to allow applications to easily
            register for and receive intents within a single application without
            broadcasting them globally.</li>

          <li>Added support in <code>ViewCompat</code> to check for and set overscroll
          modes for {@link android.view.View}s on Android 2.3 and later.</li>
          <li>Changes to Fragment APIs:
            <ul>
              <li>Added new APIs to control the visibility of new menus.</li>
              <li>Added custom animation APIs.</li>
              <li>Added APIs in <code>FragmentActivity</code> to retain custom,
              non-configuration instance data.</li>
              <li>Various bug fixes.</li>
            </ul>
          </li>

          <li>Fixed a {@link android.content.Loader} bug that caused issues in
          canceling {@link android.os.AsyncTask}s when running on Froyo and older
          versions of the platform. The support
          code now uses its own version of {@link android.os.AsyncTask} to keep the same
          behavior on all platform versions.</li>

        </ul>
      </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 3</a> <em>(July 2011)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
      <dt>Changes for v4 support library:</dt>
      <dd>
        <ul>
          <li>Adds support for {@link android.app.Fragment.SavedState}</li>
          <li>Adds {@code MotionEventCompat} to support newer {@link
android.view.MotionEvent} APIs</li>
          <li>Adds {@code VelocityTrackerCompat} to support a newer {@link
android.view.VelocityTracker} APIs</li>
          <li>Adds {@code ViewConfigurationCompat} to support a newer {@link
android.view.ViewConfiguration} APIs</li>
          <li>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:
            <ul>
              <li>{@code ViewPager}: A {@link android.view.ViewGroup} that manages the
layout for the child views, which the user can swipe between.</li>
              <li>{@code PagerAdapter}: An adapter that populates the {@code ViewPager} with the
views that represent each page.</li>
              <li>{@code FragmentPagerAdapter}: An extension of {@code PagerAdapter} for flipping
between fragments.</li>
              <li>{@code FragmentStatePagerAdapter}: An extension of {@code PagerAdapter} for
flipping between fragments that uses the library's support for {@link
android.app.Fragment.SavedState}.</li>
            </ul>
          </li>
        </ul>
      </dd>
      <dt>New v13 support library:</dt>
      <dd>
        <ul>
          <li>Includes the {@code FragmentPagerAdapter} and {@code FragmentStatePagerAdapter}
to support the horizontal paging.
          <p>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).</p>
          </li>
        </ul>
      </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 2</a> <em>(May 2011)</em>
  </p>
  <div class="toggle-content-toggleme">
    <dl>
    <dt>Changes for v4 library:</dt>
    <dd>
      <ul>
        <li>Support for fragment animations</li>
        <li>Fix {@link android.support.v4.app.Fragment#onActivityResult Fragment.onActivityResult()}
          bug</li>
      </ul>
    </dd>
    </dl>
  </div>
</div>


<div class="toggle-content closed">
  <p><a href="#" onclick="return toggleContent(this)">
    <img src="{@docRoot}assets/images/triangle-closed.png" class="toggle-content-img" alt=""
/>Android Support Library, revision 1</a> <em>(March 2011)</em>
  </p>
  <div class="toggle-content-toggleme">
      <p>Initial release with the v4 library.</p>
  </div>
</div>