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
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "//www.w3.org/TR/html4/strict.dtd">
<HTML style="overflow:auto;">
<HEAD>
<meta name="generator" content="JDiff v1.1.0">
<!-- Generated by the JDiff Javadoc doclet -->
<!-- (http://www.jdiff.org) -->
<meta name="description" content="JDiff is a Javadoc doclet which generates an HTML report of all the packages, classes, constructors, methods, and fields which have been removed, added or changed in any way, including their documentation, when two APIs are compared.">
<meta name="keywords" content="diff, jdiff, javadiff, java diff, java difference, API difference, difference between two APIs, API diff, Javadoc, doclet">
<TITLE>
Method Differences Index
</TITLE>
<link href="../../../../assets/android-developer-docs.css" rel="stylesheet" type="text/css" />
<link href="../stylesheet-jdiff.css" rel="stylesheet" type="text/css" />
<noscript>
<style type="text/css">
body{overflow:auto;}
#body-content{position:relative; top:0;}
#doc-content{overflow:visible;border-left:3px solid #666;}
#side-nav{padding:0;}
#side-nav .toggle-list ul {display:block;}
#resize-packages-nav{border-bottom:3px solid #666;}
</style>
</noscript>
<style type="text/css">
</style>
</HEAD>
<BODY class="gc-documentation" style="padding:12px;">
<a NAME="topheader"></a>
<table summary="Index for Methods" width="100%" class="jdiffIndex" border="0" cellspacing="0" cellpadding="0" style="padding-bottom:0;margin-bottom:0;">
<tr>
<th class="indexHeader">
Filter the Index:
</th>
</tr>
<tr>
<td class="indexText" style="line-height:1.3em;padding-left:2em;">
<b>Methods</b>
<br>
<A HREF="methods_index_removals.html" xclass="hiddenlink">Removals</A>
<br>
<A HREF="methods_index_additions.html"xclass="hiddenlink">Additions</A>
<br>
<A HREF="methods_index_changes.html"xclass="hiddenlink">Changes</A>
</td>
</tr>
</table>
<div id="indexTableCaption" style="background-color:#eee;padding:0 4px 0 4px;font-size:11px;margin-bottom:1em;">
Listed as: <span style="color:#069"><strong>Added</strong></span>, <span style="color:#069"><strike>Removed</strike></span>, <span style="color:#069">Changed</span></font>
</div>
<A NAME="A"></A>
<br><font size="+2">A</font>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.acceptThirdPartyCookies_added(android.webkit.WebView)" class="hiddenlink" target="rightframe"><b>acceptThirdPartyCookies</b>
(<code>WebView</code>)</A></nobr><br>
<i>addAction</i><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe">type <b>
(<code>AccessibilityAction</code>)</b> in android.view.accessibility.AccessibilityNodeInfo
</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.addAction_changed(int)" class="hiddenlink" target="rightframe">type
(<code>int</code>) in android.view.accessibility.AccessibilityNodeInfo
</A></nobr><br>
<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addAllowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addAllowedApplication</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.addAppTask_added(android.app.Activity, android.content.Intent, android.app.ActivityManager.TaskDescription, android.graphics.Bitmap)" class="hiddenlink" target="rightframe"><b>addAppTask</b>
(<code>Activity, Intent, TaskDescription, Bitmap</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addArc_added(float, float, float, float, float, float)" class="hiddenlink" target="rightframe"><b>addArc</b>
(<code>float, float, float, float, float, float</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileIntentFilter_added(android.content.ComponentName, android.content.IntentFilter, int)" class="hiddenlink" target="rightframe"><b>addCrossProfileIntentFilter</b>
(<code>ComponentName, IntentFilter, int</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addCrossProfileWidgetProvider</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.addDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>addDefaultNetworkActiveListener</b>
(<code>OnNetworkActiveListener</code>)</A></nobr><br>
<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.addDisallowedApplication_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addDisallowedApplication</b>
(<code>String</code>)</A></nobr><br>
<i>addEarcon</i><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>String, String</code>)</strike> in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.io.File)" class="hiddenlink" target="rightframe">type <b>
(<code>String, File</code>)</b> in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addEarcon_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String, String</code>)</b> in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addOval_added(float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe"><b>addOval</b>
(<code>float, float, float, float, Direction</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addPersistentPreferredActivity_added(android.content.ComponentName, android.content.IntentFilter, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>addPersistentPreferredActivity</b>
(<code>ComponentName, IntentFilter, ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.addPerson_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>addPerson</b>
(<code>String</code>)</A></nobr><br>
<i>addRoundRect</i><br>
<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float, float, android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type <b>
(<code>float, float, float, float, float, float, Direction</code>)</b> in android.graphics.Path
</A></nobr><br>
<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.addRoundRect_added(float, float, float, float, float[], android.graphics.Path.Direction)" class="hiddenlink" target="rightframe">type <b>
(<code>float, float, float, float, float[], Direction</code>)</b> in android.graphics.Path
</A></nobr><br>
<nobr><A HREF="android.app.FragmentTransaction.html#android.app.FragmentTransaction.addSharedElement_added(android.view.View, java.lang.String)" class="hiddenlink" target="rightframe"><b>addSharedElement</b>
(<code>View, String</code>)</A></nobr><br>
<i>addSpeech</i><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.io.File)" class="hiddenlink" target="rightframe">type <b>
(<code>CharSequence, File</code>)</b> in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.addSpeech_added(java.lang.CharSequence, java.lang.String, int)" class="hiddenlink" target="rightframe">type <b>
(<code>CharSequence, String, int</code>)</b> in android.speech.tts.TextToSpeech
</A></nobr><br>
<i>addTab</i><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">type
(<code>Tab</code>) in android.app.ActionBar
</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, boolean)" class="hiddenlink" target="rightframe">type
(<code>Tab, boolean</code>) in android.app.ActionBar
</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int)" class="hiddenlink" target="rightframe">type
(<code>Tab, int</code>) in android.app.ActionBar
</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.addTab_changed(android.app.ActionBar.Tab, int, boolean)" class="hiddenlink" target="rightframe">type
(<code>Tab, int, boolean</code>) in android.app.ActionBar
</A></nobr><br>
<i>addTarget</i><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type <b>
(<code>Class</code>)</b> in android.transition.Transition
</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.addTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.transition.Transition
</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.addUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>addUserRestriction</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowBypass_added()" class="hiddenlink" target="rightframe"><b>allowBypass</b>
()</A></nobr><br>
<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.allowFamily_added(int)" class="hiddenlink" target="rightframe"><b>allowFamily</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.text.SpannableStringBuilder.html#android.text.SpannableStringBuilder.append_added(java.lang.CharSequence, java.lang.Object, int)" class="hiddenlink" target="rightframe"><b>append</b>
(<code>CharSequence, Object, int</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.applyTheme_added(android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>applyTheme</b>
(<code>Theme</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.arcTo_added(float, float, float, float, float, float, boolean)" class="hiddenlink" target="rightframe"><b>arcTo</b>
(<code>float, float, float, float, float, float, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.areDefaultsEnforced_changed()" class="hiddenlink" target="rightframe">areDefaultsEnforced
()</A></nobr><br>
<A NAME="B"></A>
<br><font size="+2">B</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.bindAppWidgetIdIfAllowed_added(int, android.os.UserHandle, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>bindAppWidgetIdIfAllowed</b>
(<code>int, UserHandle, ComponentName, Bundle</code>)</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildChildDocumentsUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildChildDocumentsUriUsingTree</b>
(<code>Uri, String</code>)</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildDocumentUriUsingTree_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildDocumentUriUsingTree</b>
(<code>Uri, String</code>)</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.buildTreeDocumentUri_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>buildTreeDocumentUri</b>
(<code>String, String</code>)</A></nobr><br>
<A NAME="C"></A>
<br><font size="+2">C</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnCreate</b>
(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnPostCreate_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnPostCreate</b>
(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnRestoreInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnRestoreInstanceState</b>
(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
<nobr><A HREF="android.app.Instrumentation.html#android.app.Instrumentation.callActivityOnSaveInstanceState_added(android.app.Activity, android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>callActivityOnSaveInstanceState</b>
(<code>Activity, Bundle, PersistableBundle</code>)</A></nobr><br>
<i>canApplyTheme</i><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.canApplyTheme_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.graphics.drawable.Drawable
</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.canApplyTheme_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.graphics.drawable.Drawable.ConstantState
</A></nobr><br>
<i>cancelNotification</i><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_removed(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe">type <strike>
(<code>String, String, int</code>)</strike> in android.service.notification.NotificationListenerService
</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.service.notification.NotificationListenerService
</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotification_added(java.lang.String, java.lang.String, int)" class="hiddenlink" target="rightframe">type <b>
(<code>String, String, int</code>)</b> in android.service.notification.NotificationListenerService
</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.cancelNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>cancelNotifications</b>
(<code>String[]</code>)</A></nobr><br>
<nobr><A HREF="android.content.ContentResolver.html#android.content.ContentResolver.cancelSync_added(android.content.SyncRequest)" class="hiddenlink" target="rightframe"><b>cancelSync</b>
(<code>SyncRequest</code>)</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.cancelWps_added(android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>cancelWps</b>
(<code>WpsCallback</code>)</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.canRemoveViews_added()" class="hiddenlink" target="rightframe"><b>canRemoveViews</b>
()</A></nobr><br>
<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.canVirtualize_added(int, int)" class="hiddenlink" target="rightframe"><b>canVirtualize</b>
(<code>int, int</code>)</A></nobr><br>
<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.categoryAllowsForegroundPreference_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>categoryAllowsForegroundPreference</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.clear_changed()" class="hiddenlink" target="rightframe">clear
()</A></nobr><br>
<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.clearClientCertPreferences_added(java.lang.Runnable)" class="hiddenlink" target="rightframe"><b>clearClientCertPreferences</b>
(<code>Runnable</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearCrossProfileIntentFilters_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>clearCrossProfileIntentFilters</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearDeviceOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>clearDeviceOwnerApp</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearPackagePersistentPreferredActivities_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearPackagePersistentPreferredActivities</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.clearUserRestriction_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>clearUserRestriction</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>clearWindowAnimationFrameStats</b>
()</A></nobr><br>
<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.clearWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>clearWindowContentFrameStats</b>
(<code>int</code>)</A></nobr><br>
<i>clipRegion</i><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region)" class="hiddenlink" target="rightframe">type
(<code>Region</code>) in android.graphics.Canvas
</A></nobr><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.clipRegion_changed(android.graphics.Region, android.graphics.Region.Op)" class="hiddenlink" target="rightframe">type
(<code>Region, Op</code>) in android.graphics.Canvas
</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.computeSystemWindowInsets_added(android.view.WindowInsets, android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>computeSystemWindowInsets</b>
(<code>WindowInsets, Rect</code>)</A></nobr><br>
<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.consumeStableInsets_added()" class="hiddenlink" target="rightframe"><b>consumeStableInsets</b>
()</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.containsKey_changed(java.lang.String)" class="hiddenlink" target="rightframe">containsKey
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFrom_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFrom</b>
(<code>int, int, Object</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy1DRangeFromUnchecked_added(int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy1DRangeFromUnchecked</b>
(<code>int, int, Object</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copy2DRangeFrom_added(int, int, int, int, java.lang.Object)" class="hiddenlink" target="rightframe"><b>copy2DRangeFrom</b>
(<code>int, int, int, int, Object</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFrom_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFrom</b>
(<code>Object</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyFromUnchecked_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyFromUnchecked</b>
(<code>Object</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Allocation.html#android.renderscript.Allocation.copyTo_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>copyTo</b>
(<code>Object</code>)</A></nobr><br>
<i>create</i><br>
<nobr><A HREF="android.app.Dialog.html#android.app.Dialog.create_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Dialog
</A></nobr><br>
<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, android.net.Uri, android.view.SurfaceHolder, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type <b>
(<code>Context, Uri, SurfaceHolder, AudioAttributes, int</code>)</b> in android.media.MediaPlayer
</A></nobr><br>
<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.create_added(android.content.Context, int, android.media.AudioAttributes, int)" class="hiddenlink" target="rightframe">type <b>
(<code>Context, int, AudioAttributes, int</code>)</b> in android.media.MediaPlayer
</A></nobr><br>
<nobr><A HREF="android.renderscript.RenderScript.html#android.renderscript.RenderScript.create_added(android.content.Context, android.renderscript.RenderScript.ContextType, int)" class="hiddenlink" target="rightframe">type <b>
(<code>Context, ContextType, int</code>)</b> in android.renderscript.RenderScript
</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createAndInitializeUser_added(android.content.ComponentName, java.lang.String, java.lang.String, android.content.ComponentName, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>createAndInitializeUser</b>
(<code>ComponentName, String, String, ComponentName, Bundle</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createByCodecName_changed(java.lang.String)" class="hiddenlink" target="rightframe">createByCodecName
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.app.KeyguardManager.html#android.app.KeyguardManager.createConfirmDeviceCredentialIntent_added(java.lang.CharSequence, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>createConfirmDeviceCredentialIntent</b>
(<code>CharSequence, CharSequence</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createDecoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createDecoderByType
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.createDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createDocument</b>
(<code>ContentResolver, Uri, String, String</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.createEncoderByType_changed(java.lang.String)" class="hiddenlink" target="rightframe">createEncoderByType
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.createFromProfileLevel_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>createFromProfileLevel</b>
(<code>String, int, int</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXml_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXml</b>
(<code>Resources, XmlPullParser, Theme</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.createFromXmlInner_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>createFromXmlInner</b>
(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
<i>createPrintDocumentAdapter</i><br>
<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_removed()" class="hiddenlink" target="rightframe">type <strike>
()</strike> in android.webkit.WebView
</A></nobr><br>
<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.webkit.WebView
</A></nobr><br>
<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.createPrintDocumentAdapter_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.webkit.WebView
</A></nobr><br>
<nobr><A HREF="android.nfc.NdefRecord.html#android.nfc.NdefRecord.createTextRecord_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>createTextRecord</b>
(<code>String, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.createUser_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>createUser</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.hardware.display.DisplayManager.html#android.hardware.display.DisplayManager.createVirtualDisplay_added(java.lang.String, int, int, int, android.view.Surface, int, android.hardware.display.VirtualDisplay.Callback, android.os.Handler)" class="hiddenlink" target="rightframe"><b>createVirtualDisplay</b>
(<code>String, int, int, int, Surface, int, Callback, Handler</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createX_added(android.renderscript.RenderScript, android.renderscript.Element, int)" class="hiddenlink" target="rightframe"><b>createX</b>
(<code>RenderScript, Element, int</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXY_added(android.renderscript.RenderScript, android.renderscript.Element, int, int)" class="hiddenlink" target="rightframe"><b>createXY</b>
(<code>RenderScript, Element, int, int</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.Type.html#android.renderscript.Type.createXYZ_added(android.renderscript.RenderScript, android.renderscript.Element, int, int, int)" class="hiddenlink" target="rightframe"><b>createXYZ</b>
(<code>RenderScript, Element, int, int, int</code>)</A></nobr><br>
<A NAME="D"></A>
<br><font size="+2">D</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedFling_added(float, float, boolean)" class="hiddenlink" target="rightframe"><b>dispatchNestedFling</b>
(<code>float, float, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreFling_added(float, float)" class="hiddenlink" target="rightframe"><b>dispatchNestedPreFling</b>
(<code>float, float</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedPreScroll_added(int, int, int[], int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedPreScroll</b>
(<code>int, int, int[], int[]</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.dispatchNestedScroll_added(int, int, int, int, int[])" class="hiddenlink" target="rightframe"><b>dispatchNestedScroll</b>
(<code>int, int, int, int, int[]</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.downloadMultimediaMessage_added(android.content.Context, java.lang.String, android.net.Uri, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>downloadMultimediaMessage</b>
(<code>Context, String, Uri, Bundle, PendingIntent</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.drawableHotspotChanged_added(float, float)" class="hiddenlink" target="rightframe"><b>drawableHotspotChanged</b>
(<code>float, float</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawArc_added(float, float, float, float, float, float, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawArc</b>
(<code>float, float, float, float, float, float, boolean, Paint</code>)</A></nobr><br>
<i>drawBitmap</i><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, float, float, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type
(<code>int[], int, int, float, float, int, int, boolean, Paint</code>) in android.graphics.Canvas
</A></nobr><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawBitmap_changed(int[], int, int, int, int, int, int, boolean, android.graphics.Paint)" class="hiddenlink" target="rightframe">type
(<code>int[], int, int, int, int, int, int, boolean, Paint</code>) in android.graphics.Canvas
</A></nobr><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawOval_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawOval</b>
(<code>float, float, float, float, Paint</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.drawRoundRect_added(float, float, float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe"><b>drawRoundRect</b>
(<code>float, float, float, float, float, float, Paint</code>)</A></nobr><br>
<A NAME="E"></A>
<br><font size="+2">E</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.enableHardwareAcceleration_changed()" class="hiddenlink" target="rightframe">enableHardwareAcceleration
()</A></nobr><br>
<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.enableSlowWholeDocumentDraw_added()" class="hiddenlink" target="rightframe"><b>enableSlowWholeDocumentDraw</b>
()</A></nobr><br>
<i>enableSystemApp</i><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, android.content.Intent)" class="hiddenlink" target="rightframe">type <b>
(<code>ComponentName, Intent</code>)</b> in android.app.admin.DevicePolicyManager
</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.enableSystemApp_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>ComponentName, String</code>)</b> in android.app.admin.DevicePolicyManager
</A></nobr><br>
<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.error_added(int)" class="hiddenlink" target="rightframe"><b>error</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.excludeTarget_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>excludeTarget</b>
(<code>String, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.executeShellCommand_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>executeShellCommand</b>
(<code>String</code>)</A></nobr><br>
<A NAME="F"></A>
<br><font size="+2">F</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findDecoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findDecoderForFormat</b>
(<code>MediaFormat</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.findEncoderForFormat_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>findEncoderForFormat</b>
(<code>MediaFormat</code>)</A></nobr><br>
<i>findFocus</i><br>
<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.findFocus_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.accessibilityservice.AccessibilityService
</A></nobr><br>
<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.findFocus_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.app.UiAutomation
</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAfterTransition_added()" class="hiddenlink" target="rightframe"><b>finishAfterTransition</b>
()</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.finishAndRemoveTask_added()" class="hiddenlink" target="rightframe"><b>finishAndRemoveTask</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.fling_added(int)" class="hiddenlink" target="rightframe"><b>fling</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.flush_added()" class="hiddenlink" target="rightframe"><b>flush</b>
()</A></nobr><br>
<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.forceVirtualizationMode_added(int)" class="hiddenlink" target="rightframe"><b>forceVirtualizationMode</b>
(<code>int</code>)</A></nobr><br>
<i>forEach</i><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsic3DLUT.html#android.renderscript.ScriptIntrinsic3DLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type <b>
(<code>Allocation, Allocation, LaunchOptions</code>)</b> in android.renderscript.ScriptIntrinsic3DLUT
</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlur.html#android.renderscript.ScriptIntrinsicBlur.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type <b>
(<code>Allocation, LaunchOptions</code>)</b> in android.renderscript.ScriptIntrinsicBlur
</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicColorMatrix.html#android.renderscript.ScriptIntrinsicColorMatrix.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type <b>
(<code>Allocation, Allocation, LaunchOptions</code>)</b> in android.renderscript.ScriptIntrinsicColorMatrix
</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve3x3.html#android.renderscript.ScriptIntrinsicConvolve3x3.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type <b>
(<code>Allocation, LaunchOptions</code>)</b> in android.renderscript.ScriptIntrinsicConvolve3x3
</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicConvolve5x5.html#android.renderscript.ScriptIntrinsicConvolve5x5.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type <b>
(<code>Allocation, LaunchOptions</code>)</b> in android.renderscript.ScriptIntrinsicConvolve5x5
</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type <b>
(<code>Allocation, LaunchOptions</code>)</b> in android.renderscript.ScriptIntrinsicHistogram
</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicLUT.html#android.renderscript.ScriptIntrinsicLUT.forEach_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe">type <b>
(<code>Allocation, Allocation, LaunchOptions</code>)</b> in android.renderscript.ScriptIntrinsicLUT
</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicHistogram.html#android.renderscript.ScriptIntrinsicHistogram.forEach_Dot_added(android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEach_Dot</b>
(<code>Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachAdd_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachAdd</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachClear_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachClear</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDst_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDst</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstAtop</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstIn</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOut</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachDstOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachDstOver</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachMultiply_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachMultiply</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrc_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrc</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcAtop_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcAtop</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcIn_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcIn</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOut_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOut</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSrcOver_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSrcOver</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachSubtract_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachSubtract</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="android.renderscript.ScriptIntrinsicBlend.html#android.renderscript.ScriptIntrinsicBlend.forEachXor_added(android.renderscript.Allocation, android.renderscript.Allocation, android.renderscript.Script.LaunchOptions)" class="hiddenlink" target="rightframe"><b>forEachXor</b>
(<code>Allocation, Allocation, LaunchOptions</code>)</A></nobr><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.forLanguageTag_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>forLanguageTag</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatJapaneseNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatJapaneseNumber
(<code>Editable</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNanpNumber_changed(android.text.Editable)" class="hiddenlink" target="rightframe">formatNanpNumber
(<code>Editable</code>)</A></nobr><br>
<i>formatNumber</i><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>String</code>)</strike> in android.telephony.PhoneNumberUtils
</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_removed(android.text.Editable, int)" class="hiddenlink" target="rightframe">type <strike>
(<code>Editable, int</code>)</strike> in android.telephony.PhoneNumberUtils
</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String, String</code>)</b> in android.telephony.PhoneNumberUtils
</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String, String, String</code>)</b> in android.telephony.PhoneNumberUtils
</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.telephony.PhoneNumberUtils
</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumber_added(android.text.Editable, int)" class="hiddenlink" target="rightframe">type <b>
(<code>Editable, int</code>)</b> in android.telephony.PhoneNumberUtils
</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.formatNumberToE164_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>formatNumberToE164</b>
(<code>String, String</code>)</A></nobr><br>
<A NAME="G"></A>
<br><font size="+2">G</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.generateAudioSessionId_added()" class="hiddenlink" target="rightframe"><b>generateAudioSessionId</b>
()</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.get_changed(java.lang.String)" class="hiddenlink" target="rightframe">get
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAccountTypesWithManagementDisabled_added()" class="hiddenlink" target="rightframe"><b>getAccountTypesWithManagementDisabled</b>
()</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActionList_added()" class="hiddenlink" target="rightframe"><b>getActionList</b>
()</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getActions_changed()" class="hiddenlink" target="rightframe">getActions
()</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getActiveNotifications_added(java.lang.String[])" class="hiddenlink" target="rightframe"><b>getActiveNotifications</b>
(<code>String[]</code>)</A></nobr><br>
<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.getAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getAidsForService</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getAllNetworks_added()" class="hiddenlink" target="rightframe"><b>getAllNetworks</b>
()</A></nobr><br>
<i>getAllowEnterTransitionOverlap</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowEnterTransitionOverlap_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<i>getAllowReturnTransitionOverlap</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getAllowReturnTransitionOverlap_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getAlternateSetting_added()" class="hiddenlink" target="rightframe"><b>getAlternateSetting</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getApplicationRestrictions_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>getApplicationRestrictions</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTasks_added()" class="hiddenlink" target="rightframe"><b>getAppTasks</b>
()</A></nobr><br>
<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getAppTaskThumbnailSize_added()" class="hiddenlink" target="rightframe"><b>getAppTaskThumbnailSize</b>
()</A></nobr><br>
<nobr><A HREF="android.view.Display.html#android.view.Display.getAppVsyncOffsetNanos_added()" class="hiddenlink" target="rightframe"><b>getAppVsyncOffsetNanos</b>
()</A></nobr><br>
<nobr><A HREF="android.content.res.AssetManager.AssetInputStream.html#android.content.res.AssetManager.AssetInputStream.getAssetInt_removed()" class="hiddenlink" target="rightframe"><strike>getAssetInt</strike>
()</A></nobr><br>
<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.getAttributes_added()" class="hiddenlink" target="rightframe"><b>getAttributes</b>
()</A></nobr><br>
<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getAudioAttributes_added()" class="hiddenlink" target="rightframe"><b>getAudioAttributes</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getAudioCapabilities_added()" class="hiddenlink" target="rightframe"><b>getAudioCapabilities</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getAutoTimeRequired_added()" class="hiddenlink" target="rightframe"><b>getAutoTimeRequired</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getAvailableLanguages_added()" class="hiddenlink" target="rightframe"><b>getAvailableLanguages</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getBackgroundTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeAdvertiser_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeAdvertiser</b>
()</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.getBluetoothLeScanner_added()" class="hiddenlink" target="rightframe"><b>getBluetoothLeScanner</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintList_added()" class="hiddenlink" target="rightframe"><b>getButtonTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.getButtonTintMode_added()" class="hiddenlink" target="rightframe"><b>getButtonTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.getCarrierConfigValues_added()" class="hiddenlink" target="rightframe"><b>getCarrierConfigValues</b>
()</A></nobr><br>
<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getChangingConfigurations_added()" class="hiddenlink" target="rightframe"><b>getChangingConfigurations</b>
()</A></nobr><br>
<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getChannelMask_added()" class="hiddenlink" target="rightframe"><b>getChannelMask</b>
()</A></nobr><br>
<nobr><A HREF="android.view.textservice.TextInfo.html#android.view.textservice.TextInfo.getCharSequence_added()" class="hiddenlink" target="rightframe"><b>getCharSequence</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getCharSequenceText_added()" class="hiddenlink" target="rightframe"><b>getCharSequenceText</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintList_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.getCheckMarkTintMode_added()" class="hiddenlink" target="rightframe"><b>getCheckMarkTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getClipToOutline_added()" class="hiddenlink" target="rightframe"><b>getClipToOutline</b>
()</A></nobr><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getClipToPadding_added()" class="hiddenlink" target="rightframe"><b>getClipToPadding</b>
()</A></nobr><br>
<i>getCodeCacheDir</i><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.content.Context
</A></nobr><br>
<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.content.ContextWrapper
</A></nobr><br>
<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getCodeCacheDir_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.test.mock.MockContext
</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecCount_changed()" class="hiddenlink" target="rightframe">getCodecCount
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfoAt_changed(int)" class="hiddenlink" target="rightframe">getCodecInfoAt
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecList.html#android.media.MediaCodecList.getCodecInfos_added()" class="hiddenlink" target="rightframe"><b>getCodecInfos</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getColor_added()" class="hiddenlink" target="rightframe"><b>getColor</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getColorFilter_added()" class="hiddenlink" target="rightframe"><b>getColorFilter</b>
()</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfiguration_added(int)" class="hiddenlink" target="rightframe"><b>getConfiguration</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getConfigurationCount_added()" class="hiddenlink" target="rightframe"><b>getConfigurationCount</b>
()</A></nobr><br>
<i>getContentScene</i><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentScene_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Activity
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getContentScene_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.getContentTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getContentTransitionManager</b>
()</A></nobr><br>
<nobr><A HREF="android.media.Image.html#android.media.Image.getCropRect_added()" class="hiddenlink" target="rightframe"><b>getCropRect</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileCallerIdDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileCallerIdDisabled</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getCrossProfileWidgetProviders_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getCrossProfileWidgetProviders</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentInterruptionFilter_added()" class="hiddenlink" target="rightframe"><b>getCurrentInterruptionFilter</b>
()</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentListenerHints_added()" class="hiddenlink" target="rightframe"><b>getCurrentListenerHints</b>
()</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.getCurrentRanking_added()" class="hiddenlink" target="rightframe"><b>getCurrentRanking</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getDefaultFormat_added()" class="hiddenlink" target="rightframe"><b>getDefaultFormat</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultLanguage_changed()" class="hiddenlink" target="rightframe">getDefaultLanguage
()</A></nobr><br>
<nobr><A HREF="android.hardware.SensorManager.html#android.hardware.SensorManager.getDefaultSensor_added(int, boolean)" class="hiddenlink" target="rightframe"><b>getDefaultSensor</b>
(<code>int, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getDefaultVoice_added()" class="hiddenlink" target="rightframe"><b>getDefaultVoice</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getDirtyBounds_added()" class="hiddenlink" target="rightframe"><b>getDirtyBounds</b>
()</A></nobr><br>
<i>getDisplayScript</i><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in java.util.Locale
</A></nobr><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.getDisplayScript_added(java.util.Locale)" class="hiddenlink" target="rightframe">type <b>
(<code>Locale</code>)</b> in java.util.Locale
</A></nobr><br>
<i>getDouble</i><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>String</code>)</strike> in android.os.Bundle
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDouble_removed(java.lang.String, double)" class="hiddenlink" target="rightframe">type <strike>
(<code>String, double</code>)</strike> in android.os.Bundle
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getDoubleArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getDoubleArray
(<code>String</code>)</A></nobr><br>
<i>getDrawable</i><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.getDrawable_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.content.Context
</A></nobr><br>
<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawable_added(int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe">type <b>
(<code>int, Theme</code>)</b> in android.content.res.Resources
</A></nobr><br>
<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getDrawable_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.content.res.Resources.Theme
</A></nobr><br>
<nobr><A HREF="android.content.res.Resources.html#android.content.res.Resources.getDrawableForDensity_added(int, int, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>getDrawableForDensity</b>
(<code>int, int, Theme</code>)</A></nobr><br>
<i>getElevation</i><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getElevation_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.ActionBar
</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getElevation_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.View
</A></nobr><br>
<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.getElevation_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.widget.PopupWindow
</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getEncoderCapabilities_added()" class="hiddenlink" target="rightframe"><b>getEncoderCapabilities</b>
()</A></nobr><br>
<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getEncoding_added()" class="hiddenlink" target="rightframe"><b>getEncoding</b>
()</A></nobr><br>
<i>getEnterTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getEnterTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getEnterTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenter_added()" class="hiddenlink" target="rightframe"><b>getEpicenter</b>
()</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getEpicenterCallback_added()" class="hiddenlink" target="rightframe"><b>getEpicenterCallback</b>
()</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getError_added()" class="hiddenlink" target="rightframe"><b>getError</b>
()</A></nobr><br>
<i>getExitTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getExitTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getExitTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtension_added(char)" class="hiddenlink" target="rightframe"><b>getExtension</b>
(<code>char</code>)</A></nobr><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.getExtensionKeys_added()" class="hiddenlink" target="rightframe"><b>getExtensionKeys</b>
()</A></nobr><br>
<i>getExternalMediaDirs</i><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.content.Context
</A></nobr><br>
<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.content.ContextWrapper
</A></nobr><br>
<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getExternalMediaDirs_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.test.mock.MockContext
</A></nobr><br>
<nobr><A HREF="android.os.Environment.html#android.os.Environment.getExternalStorageState_added(java.io.File)" class="hiddenlink" target="rightframe"><b>getExternalStorageState</b>
(<code>File</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.getFeatureEnabled_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getFeatureEnabled</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getFeatures_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFeatures
(<code>Locale</code>)</A></nobr><br>
<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.getFirstDayOfWeek_added()" class="hiddenlink" target="rightframe"><b>getFirstDayOfWeek</b>
()</A></nobr><br>
<i>getFontFeatureSettings</i><br>
<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.graphics.Paint
</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getFontFeatureSettings_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.widget.TextView
</A></nobr><br>
<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintList_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.getForegroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getForegroundTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.getFormatTypeForLocale_changed(java.util.Locale)" class="hiddenlink" target="rightframe">getFormatTypeForLocale
(<code>Locale</code>)</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiInfo.html#android.net.wifi.WifiInfo.getFrequency_added()" class="hiddenlink" target="rightframe"><b>getFrequency</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getFromDegrees_added()" class="hiddenlink" target="rightframe"><b>getFromDegrees</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.getGradientRadius_added()" class="hiddenlink" target="rightframe"><b>getGradientRadius</b>
()</A></nobr><br>
<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getGroupKey_added()" class="hiddenlink" target="rightframe"><b>getGroupKey</b>
()</A></nobr><br>
<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getHandle_changed()" class="hiddenlink" target="rightframe">getHandle
()</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getHideOffset_added()" class="hiddenlink" target="rightframe"><b>getHideOffset</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintList_added()" class="hiddenlink" target="rightframe"><b>getImageTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.getImageTintMode_added()" class="hiddenlink" target="rightframe"><b>getImageTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintList_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getIndeterminateTintMode_added()" class="hiddenlink" target="rightframe"><b>getIndeterminateTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getInputBuffer</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputBuffers_changed()" class="hiddenlink" target="rightframe">getInputBuffers
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputFormat_added()" class="hiddenlink" target="rightframe"><b>getInputFormat</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getInputImage_added(int)" class="hiddenlink" target="rightframe"><b>getInputImage</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.getInputMethodWindowRecommendedHeight_added()" class="hiddenlink" target="rightframe"><b>getInputMethodWindowRecommendedHeight</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getInstalledCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getInstalledCaCerts</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.appwidget.AppWidgetManager.html#android.appwidget.AppWidgetManager.getInstalledProvidersForProfile_added(android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>getInstalledProvidersForProfile</b>
(<code>UserHandle</code>)</A></nobr><br>
<i>getInt</i><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>String</code>)</strike> in android.os.Bundle
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getInt_removed(java.lang.String, int)" class="hiddenlink" target="rightframe">type <strike>
(<code>String, int</code>)</strike> in android.os.Bundle
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getIntArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getIntArray
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getIntProperty_added(int)" class="hiddenlink" target="rightframe"><b>getIntProperty</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.getIntValue_added()" class="hiddenlink" target="rightframe"><b>getIntValue</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getLanguage_changed()" class="hiddenlink" target="rightframe">getLanguage
()</A></nobr><br>
<i>getLeanbackLaunchIntentForPackage</i><br>
<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.content.pm.PackageManager
</A></nobr><br>
<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getLeanbackLaunchIntentForPackage_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.test.mock.MockPackageManager
</A></nobr><br>
<i>getLetterSpacing</i><br>
<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.graphics.Paint
</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getLetterSpacing_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.widget.TextView
</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getLinkProperties_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getLinkProperties</b>
(<code>Network</code>)</A></nobr><br>
<i>getLong</i><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>String</code>)</strike> in android.os.Bundle
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLong_removed(java.lang.String, long)" class="hiddenlink" target="rightframe">type <strike>
(<code>String, long</code>)</strike> in android.os.Bundle
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getLongArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getLongArray
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.os.BatteryManager.html#android.os.BatteryManager.getLongProperty_added(int)" class="hiddenlink" target="rightframe"><b>getLongProperty</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getManufacturerName_added()" class="hiddenlink" target="rightframe"><b>getManufacturerName</b>
()</A></nobr><br>
<nobr><A HREF="android.text.InputFilter.LengthFilter.html#android.text.InputFilter.LengthFilter.getMax_added()" class="hiddenlink" target="rightframe"><b>getMax</b>
()</A></nobr><br>
<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getMaxDelay_added()" class="hiddenlink" target="rightframe"><b>getMaxDelay</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.getMaxHeight_added()" class="hiddenlink" target="rightframe"><b>getMaxHeight</b>
()</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getMaxTextLength_added()" class="hiddenlink" target="rightframe"><b>getMaxTextLength</b>
()</A></nobr><br>
<i>getMediaController</i><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.getMediaController_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Activity
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getMediaController_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.media.RemoteControlClient.html#android.media.RemoteControlClient.getMediaSession_added()" class="hiddenlink" target="rightframe"><b>getMediaSession</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getMimeType_added()" class="hiddenlink" target="rightframe"><b>getMimeType</b>
()</A></nobr><br>
<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.getMixedContentMode_added()" class="hiddenlink" target="rightframe"><b>getMixedContentMode</b>
()</A></nobr><br>
<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.getMode_added()" class="hiddenlink" target="rightframe"><b>getMode</b>
()</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbInterface.html#android.hardware.usb.UsbInterface.getName_added()" class="hiddenlink" target="rightframe"><b>getName</b>
()</A></nobr><br>
<nobr><A HREF="android.opengl.EGLObjectHandle.html#android.opengl.EGLObjectHandle.getNativeHandle_added()" class="hiddenlink" target="rightframe"><b>getNativeHandle</b>
()</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getNavigationBarColor_added()" class="hiddenlink" target="rightframe"><b>getNavigationBarColor</b>
()</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationItemCount_changed()" class="hiddenlink" target="rightframe">getNavigationItemCount
()</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getNavigationMode_changed()" class="hiddenlink" target="rightframe">getNavigationMode
()</A></nobr><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getNestedScrollAxes_added()" class="hiddenlink" target="rightframe"><b>getNestedScrollAxes</b>
()</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkCapabilities_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkCapabilities</b>
(<code>Network</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkInfo_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>getNetworkInfo</b>
(<code>Network</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getNetworkPreference_changed()" class="hiddenlink" target="rightframe">getNetworkPreference
()</A></nobr><br>
<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.getNextAlarmClock_added()" class="hiddenlink" target="rightframe"><b>getNextAlarmClock</b>
()</A></nobr><br>
<i>getNoBackupFilesDir</i><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.content.Context
</A></nobr><br>
<nobr><A HREF="android.content.ContextWrapper.html#android.content.ContextWrapper.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.content.ContextWrapper
</A></nobr><br>
<nobr><A HREF="android.test.mock.MockContext.html#android.test.mock.MockContext.getNoBackupFilesDir_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.test.mock.MockContext
</A></nobr><br>
<i>getOutline</i><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type <b>
(<code>Outline</code>)</b> in android.graphics.drawable.Drawable
</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.shapes.Shape.html#android.graphics.drawable.shapes.Shape.getOutline_added(android.graphics.Outline)" class="hiddenlink" target="rightframe">type <b>
(<code>Outline</code>)</b> in android.graphics.drawable.shapes.Shape
</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getOutlineProvider_added()" class="hiddenlink" target="rightframe"><b>getOutlineProvider</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffer_added(int)" class="hiddenlink" target="rightframe"><b>getOutputBuffer</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputBuffers_changed()" class="hiddenlink" target="rightframe">getOutputBuffers
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputFormat_added(int)" class="hiddenlink" target="rightframe"><b>getOutputFormat</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.getOutputImage_added(int)" class="hiddenlink" target="rightframe"><b>getOutputImage</b>
(<code>int</code>)</A></nobr><br>
<i>getPackageInstaller</i><br>
<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.content.pm.PackageManager
</A></nobr><br>
<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getPackageInstaller_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.test.mock.MockPackageManager
</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.getPaddingMode_added()" class="hiddenlink" target="rightframe"><b>getPaddingMode</b>
()</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPathMotion_added()" class="hiddenlink" target="rightframe"><b>getPathMotion</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedAccessibilityServices_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedAccessibilityServices</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getPermittedInputMethods_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getPermittedInputMethods</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotX_added()" class="hiddenlink" target="rightframe"><b>getPivotX</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getPivotY_added()" class="hiddenlink" target="rightframe"><b>getPivotY</b>
()</A></nobr><br>
<nobr><A HREF="android.view.Display.html#android.view.Display.getPresentationDeadlineNanos_added()" class="hiddenlink" target="rightframe"><b>getPresentationDeadlineNanos</b>
()</A></nobr><br>
<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.getPreviousName_added(android.accounts.Account)" class="hiddenlink" target="rightframe"><b>getPreviousName</b>
(<code>Account</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.getProcessDefaultNetwork_added()" class="hiddenlink" target="rightframe"><b>getProcessDefaultNetwork</b>
()</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getProductName_added()" class="hiddenlink" target="rightframe"><b>getProductName</b>
()</A></nobr><br>
<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.getProfile_added()" class="hiddenlink" target="rightframe"><b>getProfile</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressBackgroundTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressBackgroundTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getProgressTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getProgressTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getPropagation_added()" class="hiddenlink" target="rightframe"><b>getPropagation</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.getRasterizer_changed()" class="hiddenlink" target="rightframe">getRasterizer
()</A></nobr><br>
<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getReasonPhrase_added()" class="hiddenlink" target="rightframe"><b>getReasonPhrase</b>
()</A></nobr><br>
<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRecentTasks_changed(int, int)" class="hiddenlink" target="rightframe">getRecentTasks
(<code>int, int</code>)</A></nobr><br>
<i>getReenterTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReenterTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getReenterTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.getRemoveOnCancelPolicy_added()" class="hiddenlink" target="rightframe"><b>getRemoveOnCancelPolicy</b>
()</A></nobr><br>
<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.getReportingMode_added()" class="hiddenlink" target="rightframe"><b>getReportingMode</b>
()</A></nobr><br>
<nobr><A HREF="android.content.res.Resources.Theme.html#android.content.res.Resources.Theme.getResources_added()" class="hiddenlink" target="rightframe"><b>getResources</b>
()</A></nobr><br>
<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getResponseHeaders_added()" class="hiddenlink" target="rightframe"><b>getResponseHeaders</b>
()</A></nobr><br>
<i>getReturnTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getReturnTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getReturnTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.getRunningTasks_changed(int)" class="hiddenlink" target="rightframe">getRunningTasks
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.media.AudioFormat.html#android.media.AudioFormat.getSampleRate_added()" class="hiddenlink" target="rightframe"><b>getSampleRate</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.getScreenCaptureDisabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>getScreenCaptureDisabled</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.getScript_added()" class="hiddenlink" target="rightframe"><b>getScript</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintList_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.getSecondaryProgressTintMode_added()" class="hiddenlink" target="rightframe"><b>getSecondaryProgressTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedNavigationIndex_changed()" class="hiddenlink" target="rightframe">getSelectedNavigationIndex
()</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getSelectedTab_changed()" class="hiddenlink" target="rightframe">getSelectedTab
()</A></nobr><br>
<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.getSelectedTrack_added(int)" class="hiddenlink" target="rightframe"><b>getSelectedTrack</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.getSelectionMode_added()" class="hiddenlink" target="rightframe"><b>getSelectionMode</b>
()</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbDevice.html#android.hardware.usb.UsbDevice.getSerialNumber_added()" class="hiddenlink" target="rightframe"><b>getSerialNumber</b>
()</A></nobr><br>
<i>getSharedElementEnterTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementEnterTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementExitTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementExitTransition</b>
()</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReenterTransition_added()" class="hiddenlink" target="rightframe"><b>getSharedElementReenterTransition</b>
()</A></nobr><br>
<i>getSharedElementReturnTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementReturnTransition_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getSharedElementsUseOverlay_added()" class="hiddenlink" target="rightframe"><b>getSharedElementsUseOverlay</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getShowSoftInputOnFocus_added()" class="hiddenlink" target="rightframe"><b>getShowSoftInputOnFocus</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getShowText_added()" class="hiddenlink" target="rightframe"><b>getShowText</b>
()</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSize_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSize</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getSizeF_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getSizeF</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getSpeakerAngles_added(int, int, int[])" class="hiddenlink" target="rightframe"><b>getSpeakerAngles</b>
(<code>int, int, int[]</code>)</A></nobr><br>
<i>getSplitTrack</i><br>
<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getSplitTrack_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.widget.AbsSeekBar
</A></nobr><br>
<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.getSplitTrack_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.widget.Switch
</A></nobr><br>
<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetBottom_added()" class="hiddenlink" target="rightframe"><b>getStableInsetBottom</b>
()</A></nobr><br>
<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetLeft_added()" class="hiddenlink" target="rightframe"><b>getStableInsetLeft</b>
()</A></nobr><br>
<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetRight_added()" class="hiddenlink" target="rightframe"><b>getStableInsetRight</b>
()</A></nobr><br>
<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.getStableInsetTop_added()" class="hiddenlink" target="rightframe"><b>getStableInsetTop</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getStateListAnimator_added()" class="hiddenlink" target="rightframe"><b>getStateListAnimator</b>
()</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getStatusBarColor_added()" class="hiddenlink" target="rightframe"><b>getStatusBarColor</b>
()</A></nobr><br>
<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.getStatusCode_added()" class="hiddenlink" target="rightframe"><b>getStatusCode</b>
()</A></nobr><br>
<nobr><A HREF="android.os.Environment.html#android.os.Environment.getStorageState_changed(java.io.File)" class="hiddenlink" target="rightframe">getStorageState
(<code>File</code>)</A></nobr><br>
<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.getStreamType_changed()" class="hiddenlink" target="rightframe">getStreamType
()</A></nobr><br>
<i>getString</i><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>String</code>)</strike> in android.os.Bundle
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getString_removed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>String, String</code>)</strike> in android.os.Bundle
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.getStringArray_changed(java.lang.String)" class="hiddenlink" target="rightframe">getStringArray
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.view.Display.html#android.view.Display.getSupportedRefreshRates_added()" class="hiddenlink" target="rightframe"><b>getSupportedRefreshRates</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.getSurface_added()" class="hiddenlink" target="rightframe"><b>getSurface</b>
()</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabAt_changed(int)" class="hiddenlink" target="rightframe">getTabAt
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.getTabCount_changed()" class="hiddenlink" target="rightframe">getTabCount
()</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetNames_added()" class="hiddenlink" target="rightframe"><b>getTargetNames</b>
()</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.getTargetTypes_added()" class="hiddenlink" target="rightframe"><b>getTargetTypes</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getText_changed()" class="hiddenlink" target="rightframe">getText
()</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColor_removed(android.content.Context, android.content.res.TypedArray, int)" class="hiddenlink" target="rightframe"><strike>getTextColor</strike>
(<code>Context, TypedArray, int</code>)</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.getTextColors_removed(android.content.Context, android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>getTextColors</strike>
(<code>Context, TypedArray</code>)</A></nobr><br>
<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintList_added()" class="hiddenlink" target="rightframe"><b>getThumbTintList</b>
()</A></nobr><br>
<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.getThumbTintMode_added()" class="hiddenlink" target="rightframe"><b>getThumbTintMode</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.getToDegrees_added()" class="hiddenlink" target="rightframe"><b>getToDegrees</b>
()</A></nobr><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.getTouchscreenBlocksFocus_added()" class="hiddenlink" target="rightframe"><b>getTouchscreenBlocksFocus</b>
()</A></nobr><br>
<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionAt_added(int)" class="hiddenlink" target="rightframe"><b>getTransitionAt</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionBackgroundFadeDuration_added()" class="hiddenlink" target="rightframe"><b>getTransitionBackgroundFadeDuration</b>
()</A></nobr><br>
<nobr><A HREF="android.transition.TransitionSet.html#android.transition.TransitionSet.getTransitionCount_added()" class="hiddenlink" target="rightframe"><b>getTransitionCount</b>
()</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.getTransitionManager_added()" class="hiddenlink" target="rightframe"><b>getTransitionManager</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getTransitionName_added()" class="hiddenlink" target="rightframe"><b>getTransitionName</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getTranslationZ_added()" class="hiddenlink" target="rightframe"><b>getTranslationZ</b>
()</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.getTreeDocumentId_added(android.net.Uri)" class="hiddenlink" target="rightframe"><b>getTreeDocumentId</b>
(<code>Uri</code>)</A></nobr><br>
<nobr><A HREF="android.content.res.TypedArray.html#android.content.res.TypedArray.getType_added(int)" class="hiddenlink" target="rightframe"><b>getType</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.provider.ContactsContract.CommonDataKinds.Event.html#android.provider.ContactsContract.CommonDataKinds.Event.getTypeLabel_added(android.content.res.Resources, int, java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>getTypeLabel</b>
(<code>Resources, int, CharSequence</code>)</A></nobr><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleAttributes_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleAttributes</b>
()</A></nobr><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleKeys_added()" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleKeys</b>
()</A></nobr><br>
<nobr><A HREF="java.util.Locale.html#java.util.Locale.getUnicodeLocaleType_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>getUnicodeLocaleType</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUser_added()" class="hiddenlink" target="rightframe"><b>getUser</b>
()</A></nobr><br>
<i>getUserBadgedDrawableForDensity</i><br>
<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type <b>
(<code>Drawable, UserHandle, Rect, int</code>)</b> in android.content.pm.PackageManager
</A></nobr><br>
<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedDrawableForDensity_added(android.graphics.drawable.Drawable, android.os.UserHandle, android.graphics.Rect, int)" class="hiddenlink" target="rightframe">type <b>
(<code>Drawable, UserHandle, Rect, int</code>)</b> in android.test.mock.MockPackageManager
</A></nobr><br>
<i>getUserBadgedIcon</i><br>
<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type <b>
(<code>Drawable, UserHandle</code>)</b> in android.content.pm.PackageManager
</A></nobr><br>
<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedIcon_added(android.graphics.drawable.Drawable, android.os.UserHandle)" class="hiddenlink" target="rightframe">type <b>
(<code>Drawable, UserHandle</code>)</b> in android.test.mock.MockPackageManager
</A></nobr><br>
<i>getUserBadgedLabel</i><br>
<nobr><A HREF="android.content.pm.PackageManager.html#android.content.pm.PackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type <b>
(<code>CharSequence, UserHandle</code>)</b> in android.content.pm.PackageManager
</A></nobr><br>
<nobr><A HREF="android.test.mock.MockPackageManager.html#android.test.mock.MockPackageManager.getUserBadgedLabel_added(java.lang.CharSequence, android.os.UserHandle)" class="hiddenlink" target="rightframe">type <b>
(<code>CharSequence, UserHandle</code>)</b> in android.test.mock.MockPackageManager
</A></nobr><br>
<nobr><A HREF="android.service.notification.StatusBarNotification.html#android.service.notification.StatusBarNotification.getUserId_changed()" class="hiddenlink" target="rightframe">getUserId
()</A></nobr><br>
<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.getUserProfiles_added()" class="hiddenlink" target="rightframe"><b>getUserProfiles</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.getVideoCapabilities_added()" class="hiddenlink" target="rightframe"><b>getVideoCapabilities</b>
()</A></nobr><br>
<nobr><A HREF="android.media.audiofx.Virtualizer.html#android.media.audiofx.Virtualizer.getVirtualizationMode_added()" class="hiddenlink" target="rightframe"><b>getVirtualizationMode</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoice_added()" class="hiddenlink" target="rightframe"><b>getVoice</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.SynthesisRequest.html#android.speech.tts.SynthesisRequest.getVoiceName_added()" class="hiddenlink" target="rightframe"><b>getVoiceName</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.getVoices_added()" class="hiddenlink" target="rightframe"><b>getVoices</b>
()</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.getWindow_added()" class="hiddenlink" target="rightframe"><b>getWindow</b>
()</A></nobr><br>
<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowAnimationFrameStats_added()" class="hiddenlink" target="rightframe"><b>getWindowAnimationFrameStats</b>
()</A></nobr><br>
<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindowContentFrameStats_added(int)" class="hiddenlink" target="rightframe"><b>getWindowContentFrameStats</b>
(<code>int</code>)</A></nobr><br>
<i>getWindows</i><br>
<nobr><A HREF="android.accessibilityservice.AccessibilityService.html#android.accessibilityservice.AccessibilityService.getWindows_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.accessibilityservice.AccessibilityService
</A></nobr><br>
<nobr><A HREF="android.app.UiAutomation.html#android.app.UiAutomation.getWindows_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.app.UiAutomation
</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.getZ_added()" class="hiddenlink" target="rightframe"><b>getZ</b>
()</A></nobr><br>
<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveAttrib_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveAttrib</strike>
(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetActiveUniform_removed(int, int, int, java.nio.IntBuffer, java.nio.IntBuffer, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetActiveUniform</strike>
(<code>int, int, int, IntBuffer, IntBuffer, IntBuffer, byte</code>)</A></nobr><br>
<nobr><A HREF="android.opengl.GLES20.html#android.opengl.GLES20.glGetShaderSource_removed(int, int, java.nio.IntBuffer, byte)" class="hiddenlink" target="rightframe"><strike>glGetShaderSource</strike>
(<code>int, int, IntBuffer, byte</code>)</A></nobr><br>
<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.goToSleep_removed(long)" class="hiddenlink" target="rightframe"><strike>goToSleep</strike>
(<code>long</code>)</A></nobr><br>
<A NAME="H"></A>
<br><font size="+2">H</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasBackgroundColor_added()" class="hiddenlink" target="rightframe"><b>hasBackgroundColor</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.hasCaCertInstalled_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>hasCaCertInstalled</b>
(<code>ComponentName, byte[]</code>)</A></nobr><br>
<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeColor_added()" class="hiddenlink" target="rightframe"><b>hasEdgeColor</b>
()</A></nobr><br>
<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasEdgeType_added()" class="hiddenlink" target="rightframe"><b>hasEdgeType</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasFinished_added()" class="hiddenlink" target="rightframe"><b>hasFinished</b>
()</A></nobr><br>
<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasForegroundColor_added()" class="hiddenlink" target="rightframe"><b>hasForegroundColor</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.hasNestedScrollingParent_added()" class="hiddenlink" target="rightframe"><b>hasNestedScrollingParent</b>
()</A></nobr><br>
<i>hasQueuedPredecessors</i><br>
<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedLongSynchronizer.html#java.util.concurrent.locks.AbstractQueuedLongSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in java.util.concurrent.locks.AbstractQueuedLongSynchronizer
</A></nobr><br>
<nobr><A HREF="java.util.concurrent.locks.AbstractQueuedSynchronizer.html#java.util.concurrent.locks.AbstractQueuedSynchronizer.hasQueuedPredecessors_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in java.util.concurrent.locks.AbstractQueuedSynchronizer
</A></nobr><br>
<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.hasStableInsets_added()" class="hiddenlink" target="rightframe"><b>hasStableInsets</b>
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.SynthesisCallback.html#android.speech.tts.SynthesisCallback.hasStarted_added()" class="hiddenlink" target="rightframe"><b>hasStarted</b>
()</A></nobr><br>
<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.hasUserRestriction_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>hasUserRestriction</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.view.accessibility.CaptioningManager.CaptionStyle.html#android.view.accessibility.CaptioningManager.CaptionStyle.hasWindowColor_added()" class="hiddenlink" target="rightframe"><b>hasWindowColor</b>
()</A></nobr><br>
<A NAME="I"></A>
<br><font size="+2">I</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccCloseLogicalChannel_added(int)" class="hiddenlink" target="rightframe"><b>iccCloseLogicalChannel</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccExchangeSimIO_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccExchangeSimIO</b>
(<code>int, int, int, int, int, String</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccOpenLogicalChannel_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>iccOpenLogicalChannel</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduBasicChannel_added(int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduBasicChannel</b>
(<code>int, int, int, int, int, String</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.iccTransmitApduLogicalChannel_added(int, int, int, int, int, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>iccTransmitApduLogicalChannel</b>
(<code>int, int, int, int, int, int, String</code>)</A></nobr><br>
<nobr><A HREF="android.util.ArrayMap.html#android.util.ArrayMap.indexOfKey_added(java.lang.Object)" class="hiddenlink" target="rightframe"><b>indexOfKey</b>
(<code>Object</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.inflate_added(android.content.res.Resources, org.xmlpull.v1.XmlPullParser, android.util.AttributeSet, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>inflate</b>
(<code>Resources, XmlPullParser, AttributeSet, Theme</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.initializeFadingEdge_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeFadingEdge</strike>
(<code>TypedArray</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.initializeScrollbars_removed(android.content.res.TypedArray)" class="hiddenlink" target="rightframe"><strike>initializeScrollbars</strike>
(<code>TypedArray</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>installCaCert</b>
(<code>ComponentName, byte[]</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.installKeyPair_added(android.content.ComponentName, java.security.PrivateKey, java.security.cert.Certificate, java.lang.String)" class="hiddenlink" target="rightframe"><b>installKeyPair</b>
(<code>ComponentName, PrivateKey, Certificate, String</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.invalidateOutline_added()" class="hiddenlink" target="rightframe"><b>invalidateOutline</b>
()</A></nobr><br>
<nobr><A HREF="android.nfc.NfcAdapter.html#android.nfc.NfcAdapter.invokeBeam_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>invokeBeam</b>
(<code>Activity</code>)</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.is5GHzBandSupported_added()" class="hiddenlink" target="rightframe"><b>is5GHzBandSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.isAccessibilityFocused_added()" class="hiddenlink" target="rightframe"><b>isAccessibilityFocused</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.Matrix.html#android.graphics.Matrix.isAffine_added()" class="hiddenlink" target="rightframe"><b>isAffine</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isApplicationHidden_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isApplicationHidden</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.view.MotionEvent.html#android.view.MotionEvent.isButtonPressed_added(int)" class="hiddenlink" target="rightframe"><b>isButtonPressed</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.isChildDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>isChildDocument</b>
(<code>String, String</code>)</A></nobr><br>
<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.isConsumed_added()" class="hiddenlink" target="rightframe"><b>isConsumed</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.Path.html#android.graphics.Path.isConvex_added()" class="hiddenlink" target="rightframe"><b>isConvex</b>
()</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.isDefaultNetworkActive_added()" class="hiddenlink" target="rightframe"><b>isDefaultNetworkActive</b>
()</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isDeviceToApRttSupported_added()" class="hiddenlink" target="rightframe"><b>isDeviceToApRttSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.isElegantTextHeight_added()" class="hiddenlink" target="rightframe"><b>isElegantTextHeight</b>
()</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.isEmpty_changed()" class="hiddenlink" target="rightframe">isEmpty
()</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isEnhancedPowerReportingSupported_added()" class="hiddenlink" target="rightframe"><b>isEnhancedPowerReportingSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.provider.ContactsContract.Contacts.html#android.provider.ContactsContract.Contacts.isEnterpriseContactId_added(long)" class="hiddenlink" target="rightframe"><b>isEnterpriseContactId</b>
(<code>long</code>)</A></nobr><br>
<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageEmulated_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageEmulated</b>
(<code>File</code>)</A></nobr><br>
<nobr><A HREF="android.os.Environment.html#android.os.Environment.isExternalStorageRemovable_added(java.io.File)" class="hiddenlink" target="rightframe"><b>isExternalStorageRemovable</b>
(<code>File</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFeatureRequired_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isFeatureRequired</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodecInfo.CodecCapabilities.html#android.media.MediaCodecInfo.CodecCapabilities.isFormatSupported_added(android.media.MediaFormat)" class="hiddenlink" target="rightframe"><b>isFormatSupported</b>
(<code>MediaFormat</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.isHideOnContentScrollEnabled_added()" class="hiddenlink" target="rightframe"><b>isHideOnContentScrollEnabled</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.isImportantForAccessibility_added()" class="hiddenlink" target="rightframe"><b>isImportantForAccessibility</b>
()</A></nobr><br>
<nobr><A HREF="android.app.ActivityManager.html#android.app.ActivityManager.isInLockTaskMode_added()" class="hiddenlink" target="rightframe"><b>isInLockTaskMode</b>
()</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isLocalEmergencyNumber_added(android.content.Context, java.lang.String)" class="hiddenlink" target="rightframe"><b>isLocalEmergencyNumber</b>
(<code>Context, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isLockTaskPermitted_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isLockTaskPermitted</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isMasterVolumeMuted_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>isMasterVolumeMuted</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isMultipleAdvertisementSupported_added()" class="hiddenlink" target="rightframe"><b>isMultipleAdvertisementSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.isNestedScrollingEnabled_added()" class="hiddenlink" target="rightframe"><b>isNestedScrollingEnabled</b>
()</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedFilteringSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedFilteringSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.isOffloadedScanBatchingSupported_added()" class="hiddenlink" target="rightframe"><b>isOffloadedScanBatchingSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.content.res.ColorStateList.html#android.content.res.ColorStateList.isOpaque_added()" class="hiddenlink" target="rightframe"><b>isOpaque</b>
()</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isP2pSupported_added()" class="hiddenlink" target="rightframe"><b>isP2pSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotXRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotXRelative</b>
()</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.isPivotYRelative_added()" class="hiddenlink" target="rightframe"><b>isPivotYRelative</b>
()</A></nobr><br>
<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isPowerSaveMode_added()" class="hiddenlink" target="rightframe"><b>isPowerSaveMode</b>
()</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isPreferredNetworkOffloadSupported_added()" class="hiddenlink" target="rightframe"><b>isPreferredNetworkOffloadSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isProfileOwnerApp_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isProfileOwnerApp</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.isSelected_added()" class="hiddenlink" target="rightframe"><b>isSelected</b>
()</A></nobr><br>
<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.isSmsCapable_added()" class="hiddenlink" target="rightframe"><b>isSmsCapable</b>
()</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.isTdlsSupported_added()" class="hiddenlink" target="rightframe"><b>isTdlsSupported</b>
()</A></nobr><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.isTransitionGroup_added()" class="hiddenlink" target="rightframe"><b>isTransitionGroup</b>
()</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.isUninstallBlocked_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>isUninstallBlocked</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.net.http.X509TrustManagerExtensions.html#android.net.http.X509TrustManagerExtensions.isUserAddedCertificate_added(java.security.cert.X509Certificate)" class="hiddenlink" target="rightframe"><b>isUserAddedCertificate</b>
(<code>X509Certificate</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.isVoiceMailNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>isVoiceMailNumber</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.isVolumeFixed_added()" class="hiddenlink" target="rightframe"><b>isVolumeFixed</b>
()</A></nobr><br>
<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.isWakeLockLevelSupported_added(int)" class="hiddenlink" target="rightframe"><b>isWakeLockLevelSupported</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.hardware.Sensor.html#android.hardware.Sensor.isWakeUpSensor_added()" class="hiddenlink" target="rightframe"><b>isWakeUpSensor</b>
()</A></nobr><br>
<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.isWatchingCursor_changed(android.view.View)" class="hiddenlink" target="rightframe">isWatchingCursor
(<code>View</code>)</A></nobr><br>
<A NAME="K"></A>
<br><font size="+2">K</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.keySet_changed()" class="hiddenlink" target="rightframe">keySet
()</A></nobr><br>
<A NAME="L"></A>
<br><font size="+2">L</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadIcon_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadIcon</b>
(<code>Context, int</code>)</A></nobr><br>
<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadLabel_added(android.content.pm.PackageManager)" class="hiddenlink" target="rightframe"><b>loadLabel</b>
(<code>PackageManager</code>)</A></nobr><br>
<nobr><A HREF="android.appwidget.AppWidgetProviderInfo.html#android.appwidget.AppWidgetProviderInfo.loadPreviewImage_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadPreviewImage</b>
(<code>Context, int</code>)</A></nobr><br>
<nobr><A HREF="android.animation.AnimatorInflater.html#android.animation.AnimatorInflater.loadStateListAnimator_added(android.content.Context, int)" class="hiddenlink" target="rightframe"><b>loadStateListAnimator</b>
(<code>Context, int</code>)</A></nobr><br>
<A NAME="M"></A>
<br><font size="+2">M</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<i>makeSceneTransitionAnimation</i><br>
<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.util.Pair<android.view.View, java.lang.String>...)" class="hiddenlink" target="rightframe">type <b>
(<code>Activity, Pair<View, String></code>)</b> in android.app.ActivityOptions
</A></nobr><br>
<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeSceneTransitionAnimation_added(android.app.Activity, android.view.View, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>Activity, View, String</code>)</b> in android.app.ActivityOptions
</A></nobr><br>
<nobr><A HREF="android.app.ActivityOptions.html#android.app.ActivityOptions.makeTaskLaunchBehind_added()" class="hiddenlink" target="rightframe"><b>makeTaskLaunchBehind</b>
()</A></nobr><br>
<A NAME="N"></A>
<br><font size="+2">N</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.graphics.drawable.Drawable.ConstantState.html#android.graphics.drawable.Drawable.ConstantState.newDrawable_added(android.content.res.Resources, android.content.res.Resources.Theme)" class="hiddenlink" target="rightframe"><b>newDrawable</b>
(<code>Resources, Theme</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.newTab_changed()" class="hiddenlink" target="rightframe">newTab
()</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.normalizeNumber_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>normalizeNumber</b>
(<code>String</code>)</A></nobr><br>
<A NAME="O"></A>
<br><font size="+2">O</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<i>obtain</i><br>
<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.obtain_removed(int)" class="hiddenlink" target="rightframe">type <strike>
(<code>int</code>)</strike> in android.os.Parcel
</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionInfo.obtain_added(int, int, boolean, int)" class="hiddenlink" target="rightframe">type <b>
(<code>int, int, boolean, int</code>)</b> in android.view.accessibility.AccessibilityNodeInfo.CollectionInfo
</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.html#android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo.obtain_added(int, int, int, int, boolean, boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>int, int, int, int, boolean, boolean</code>)</b> in android.view.accessibility.AccessibilityNodeInfo.CollectionItemInfo
</A></nobr><br>
<i>ofArgb</i><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(T, android.util.Property<T, java.lang.Integer>, int...)" class="hiddenlink" target="rightframe">type <b>
(<code>T, Property<T, Integer>, </code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofArgb_added(java.lang.Object, java.lang.String, int...)" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, </code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ValueAnimator.html#android.animation.ValueAnimator.ofArgb_added(int...)" class="hiddenlink" target="rightframe">type <b>
()</b> in android.animation.ValueAnimator
</A></nobr><br>
<i>ofFloat</i><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(T, android.util.Property<T, java.lang.Float>, android.util.Property<T, java.lang.Float>, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>T, Property<T, Float>, Property<T, Float>, Path</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofFloat_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, String, Path</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<i>ofInt</i><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(T, android.util.Property<T, java.lang.Integer>, android.util.Property<T, java.lang.Integer>, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>T, Property<T, Integer>, Property<T, Integer>, Path</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofInt_added(java.lang.Object, java.lang.String, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, String, Path</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<i>ofMultiFloat</i><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, TypeConverter<T, float[]>, TypeEvaluator<T>, </code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, Path</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiFloat_added(java.lang.Object, java.lang.String, float[][])" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, float[][]</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<T, float[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type <b>
(<code>String, TypeConverter<T, float[]>, TypeEvaluator<T>, </code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.animation.TypeConverter<V, float[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type <b>
(<code>String, TypeConverter<V, float[]>, TypeEvaluator<V>, </code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>String, Path</code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiFloat_added(java.lang.String, float[][])" class="hiddenlink" target="rightframe">type <b>
(<code>String, float[][]</code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<i>ofMultiInt</i><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, TypeConverter<T, int[]>, TypeEvaluator<T>, </code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, Path</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofMultiInt_added(java.lang.Object, java.lang.String, int[][])" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, int[][]</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<T, int[]>, android.animation.TypeEvaluator<T>, android.animation.Keyframe...)" class="hiddenlink" target="rightframe">type <b>
(<code>String, TypeConverter<T, int[]>, TypeEvaluator<T>, </code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.animation.TypeConverter<V, int[]>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type <b>
(<code>String, TypeConverter<V, int[]>, TypeEvaluator<V>, </code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>String, Path</code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofMultiInt_added(java.lang.String, int[][])" class="hiddenlink" target="rightframe">type <b>
(<code>String, int[][]</code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<i>ofObject</i><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, P>, android.animation.TypeConverter<V, P>, android.animation.TypeEvaluator<V>, V...)" class="hiddenlink" target="rightframe">type <b>
(<code>T, Property<T, P>, TypeConverter<V, P>, TypeEvaluator<V>, </code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(T, android.util.Property<T, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>T, Property<T, V>, TypeConverter<PointF, V>, Path</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.ObjectAnimator.html#android.animation.ObjectAnimator.ofObject_added(java.lang.Object, java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>Object, String, TypeConverter<PointF, ?>, Path</code>)</b> in android.animation.ObjectAnimator
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<T, V>, android.animation.TypeEvaluator<T>, T...)" class="hiddenlink" target="rightframe">type <b>
(<code>Property<?, V>, TypeConverter<T, V>, TypeEvaluator<T>, </code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(android.util.Property<?, V>, android.animation.TypeConverter<android.graphics.PointF, V>, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>Property<?, V>, TypeConverter<PointF, V>, Path</code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.ofObject_added(java.lang.String, android.animation.TypeConverter<android.graphics.PointF, ?>, android.graphics.Path)" class="hiddenlink" target="rightframe">type <b>
(<code>String, TypeConverter<PointF, ?>, Path</code>)</b> in android.animation.PropertyValuesHolder
</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.onActivityReenter_added(int, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onActivityReenter</b>
(<code>int, Intent</code>)</A></nobr><br>
<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onAppear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onAppear</b>
(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
<nobr><A HREF="android.service.wallpaper.WallpaperService.Engine.html#android.service.wallpaper.WallpaperService.Engine.onApplyWindowInsets_added(android.view.WindowInsets)" class="hiddenlink" target="rightframe"><b>onApplyWindowInsets</b>
(<code>WindowInsets</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.onCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onCreate</b>
(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.onDisappear_added(android.view.ViewGroup, android.view.View, android.transition.TransitionValues, android.transition.TransitionValues)" class="hiddenlink" target="rightframe"><b>onDisappear</b>
(<code>ViewGroup, View, TransitionValues, TransitionValues</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.onEnterAnimationComplete_added()" class="hiddenlink" target="rightframe"><b>onEnterAnimationComplete</b>
()</A></nobr><br>
<i>onError</i><br>
<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_removed(java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>String</code>)</strike> in android.speech.tts.UtteranceProgressListener
</A></nobr><br>
<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String, int)" class="hiddenlink" target="rightframe">type <b>
(<code>String, int</code>)</b> in android.speech.tts.UtteranceProgressListener
</A></nobr><br>
<nobr><A HREF="android.speech.tts.UtteranceProgressListener.html#android.speech.tts.UtteranceProgressListener.onError_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.speech.tts.UtteranceProgressListener
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetDefaultVoiceNameFor_added(java.lang.String, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>onGetDefaultVoiceNameFor</b>
(<code>String, String, String</code>)</A></nobr><br>
<nobr><A HREF="android.location.SettingInjectorService.html#android.location.SettingInjectorService.onGetSummary_changed()" class="hiddenlink" target="rightframe">onGetSummary
()</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onGetVoices_added()" class="hiddenlink" target="rightframe"><b>onGetVoices</b>
()</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onInterruptionFilterChanged_added(int)" class="hiddenlink" target="rightframe"><b>onInterruptionFilterChanged</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onIsValidVoiceName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onIsValidVoiceName</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerConnected_added()" class="hiddenlink" target="rightframe"><b>onListenerConnected</b>
()</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onListenerHintsChanged_added(int)" class="hiddenlink" target="rightframe"><b>onListenerHintsChanged</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeechService.html#android.speech.tts.TextToSpeechService.onLoadVoice_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>onLoadVoice</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeEntering_added(android.content.Context, android.content.Intent, java.lang.String)" class="hiddenlink" target="rightframe"><b>onLockTaskModeEntering</b>
(<code>Context, Intent, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onLockTaskModeExiting_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onLockTaskModeExiting</b>
(<code>Context, Intent</code>)</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothGattCallback.html#android.bluetooth.BluetoothGattCallback.onMtuChanged_added(android.bluetooth.BluetoothGatt, int, int)" class="hiddenlink" target="rightframe"><b>onMtuChanged</b>
(<code>BluetoothGatt, int, int</code>)</A></nobr><br>
<i>onNestedFling</i><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>View, float, float, boolean</code>)</b> in android.view.ViewGroup
</A></nobr><br>
<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedFling_added(android.view.View, float, float, boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>View, float, float, boolean</code>)</b> in android.view.ViewParent
</A></nobr><br>
<i>onNestedPreFling</i><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type <b>
(<code>View, float, float</code>)</b> in android.view.ViewGroup
</A></nobr><br>
<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreFling_added(android.view.View, float, float)" class="hiddenlink" target="rightframe">type <b>
(<code>View, float, float</code>)</b> in android.view.ViewParent
</A></nobr><br>
<i>onNestedPreScroll</i><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type <b>
(<code>View, int, int, int[]</code>)</b> in android.view.ViewGroup
</A></nobr><br>
<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedPreScroll_added(android.view.View, int, int, int[])" class="hiddenlink" target="rightframe">type <b>
(<code>View, int, int, int[]</code>)</b> in android.view.ViewParent
</A></nobr><br>
<i>onNestedScroll</i><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type <b>
(<code>View, int, int, int, int</code>)</b> in android.view.ViewGroup
</A></nobr><br>
<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScroll_added(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">type <b>
(<code>View, int, int, int, int</code>)</b> in android.view.ViewParent
</A></nobr><br>
<i>onNestedScrollAccepted</i><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type <b>
(<code>View, View, int</code>)</b> in android.view.ViewGroup
</A></nobr><br>
<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onNestedScrollAccepted_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type <b>
(<code>View, View, int</code>)</b> in android.view.ViewParent
</A></nobr><br>
<i>onNotificationPosted</i><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe">type <b>
(<code>StatusBarNotification, RankingMap</code>)</b> in android.service.notification.NotificationListenerService
</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationPosted_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">type
(<code>StatusBarNotification</code>) in android.service.notification.NotificationListenerService
</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRankingUpdate_added(android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe"><b>onNotificationRankingUpdate</b>
(<code>RankingMap</code>)</A></nobr><br>
<i>onNotificationRemoved</i><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_added(android.service.notification.StatusBarNotification, android.service.notification.NotificationListenerService.RankingMap)" class="hiddenlink" target="rightframe">type <b>
(<code>StatusBarNotification, RankingMap</code>)</b> in android.service.notification.NotificationListenerService
</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.onNotificationRemoved_changed(android.service.notification.StatusBarNotification)" class="hiddenlink" target="rightframe">type
(<code>StatusBarNotification</code>) in android.service.notification.NotificationListenerService
</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothGattServerCallback.html#android.bluetooth.BluetoothGattServerCallback.onNotificationSent_added(android.bluetooth.BluetoothDevice, int)" class="hiddenlink" target="rightframe"><b>onNotificationSent</b>
(<code>BluetoothDevice, int</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequest_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequest</b>
(<code>PermissionRequest</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onPermissionRequestCanceled_added(android.webkit.PermissionRequest)" class="hiddenlink" target="rightframe"><b>onPermissionRequestCanceled</b>
(<code>PermissionRequest</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.onPostCreate_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onPostCreate</b>
(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DeviceAdminReceiver.html#android.app.admin.DeviceAdminReceiver.onProfileProvisioningComplete_added(android.content.Context, android.content.Intent)" class="hiddenlink" target="rightframe"><b>onProfileProvisioningComplete</b>
(<code>Context, Intent</code>)</A></nobr><br>
<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.onPull_added(float, float)" class="hiddenlink" target="rightframe"><b>onPull</b>
(<code>float, float</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onReceivedClientCertRequest_added(android.webkit.WebView, android.webkit.ClientCertRequest)" class="hiddenlink" target="rightframe"><b>onReceivedClientCertRequest</b>
(<code>WebView, ClientCertRequest</code>)</A></nobr><br>
<nobr><A HREF="android.appwidget.AppWidgetProvider.html#android.appwidget.AppWidgetProvider.onRestored_added(android.content.Context, int[], int[])" class="hiddenlink" target="rightframe"><b>onRestored</b>
(<code>Context, int[], int[]</code>)</A></nobr><br>
<nobr><A HREF="android.app.backup.BackupAgent.html#android.app.backup.BackupAgent.onRestoreFinished_added()" class="hiddenlink" target="rightframe"><b>onRestoreFinished</b>
()</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.onRestoreInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onRestoreInstanceState</b>
(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.onSaveInstanceState_added(android.os.Bundle, android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>onSaveInstanceState</b>
(<code>Bundle, PersistableBundle</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.WebChromeClient.html#android.webkit.WebChromeClient.onShowFileChooser_added(android.webkit.WebView, android.webkit.ValueCallback<android.net.Uri[]>, android.webkit.WebChromeClient.FileChooserParams)" class="hiddenlink" target="rightframe"><b>onShowFileChooser</b>
(<code>WebView, ValueCallback<Uri[]>, FileChooserParams</code>)</A></nobr><br>
<i>onStartNestedScroll</i><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type <b>
(<code>View, View, int</code>)</b> in android.view.ViewGroup
</A></nobr><br>
<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStartNestedScroll_added(android.view.View, android.view.View, int)" class="hiddenlink" target="rightframe">type <b>
(<code>View, View, int</code>)</b> in android.view.ViewParent
</A></nobr><br>
<i>onStopNestedScroll</i><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type <b>
(<code>View</code>)</b> in android.view.ViewGroup
</A></nobr><br>
<nobr><A HREF="android.view.ViewParent.html#android.view.ViewParent.onStopNestedScroll_added(android.view.View)" class="hiddenlink" target="rightframe">type <b>
(<code>View</code>)</b> in android.view.ViewParent
</A></nobr><br>
<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledInputEvent_added(android.webkit.WebView, android.view.InputEvent)" class="hiddenlink" target="rightframe"><b>onUnhandledInputEvent</b>
(<code>WebView, InputEvent</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.onUnhandledKeyEvent_changed(android.webkit.WebView, android.view.KeyEvent)" class="hiddenlink" target="rightframe">onUnhandledKeyEvent
(<code>WebView, KeyEvent</code>)</A></nobr><br>
<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursor_changed(android.graphics.Rect)" class="hiddenlink" target="rightframe">onUpdateCursor
(<code>Rect</code>)</A></nobr><br>
<nobr><A HREF="android.inputmethodservice.InputMethodService.html#android.inputmethodservice.InputMethodService.onUpdateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe"><b>onUpdateCursorAnchorInfo</b>
(<code>CursorAnchorInfo</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.onVisibleBehindCanceled_added()" class="hiddenlink" target="rightframe"><b>onVisibleBehindCanceled</b>
()</A></nobr><br>
<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.onWakeUp_added()" class="hiddenlink" target="rightframe"><b>onWakeUp</b>
()</A></nobr><br>
<i>openAssetFile</i><br>
<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>Uri, String</code>)</b> in android.provider.DocumentsProvider
</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.openAssetFile_added(android.net.Uri, java.lang.String, android.os.CancellationSignal)" class="hiddenlink" target="rightframe">type <b>
(<code>Uri, String, CancellationSignal</code>)</b> in android.provider.DocumentsProvider
</A></nobr><br>
<nobr><A HREF="android.media.MediaDrm.html#android.media.MediaDrm.openSession_changed()" class="hiddenlink" target="rightframe">openSession
()</A></nobr><br>
<A NAME="P"></A>
<br><font size="+2">P</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<i>playEarcon</i><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_added(java.lang.String, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String, int, Bundle, String</code>)</b> in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playEarcon_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
(<code>String, int, HashMap<String, String></code>) in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilence_changed(long, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">playSilence
(<code>long, int, HashMap<String, String></code>)</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.playSilentUtterance_added(long, int, java.lang.String)" class="hiddenlink" target="rightframe"><b>playSilentUtterance</b>
(<code>long, int, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.postponeEnterTransition_added()" class="hiddenlink" target="rightframe"><b>postponeEnterTransition</b>
()</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDouble_changed(java.lang.String, double)" class="hiddenlink" target="rightframe">putDouble
(<code>String, double</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putDoubleArray_changed(java.lang.String, double[])" class="hiddenlink" target="rightframe">putDoubleArray
(<code>String, double[]</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putInt_changed(java.lang.String, int)" class="hiddenlink" target="rightframe">putInt
(<code>String, int</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putIntArray_changed(java.lang.String, int[])" class="hiddenlink" target="rightframe">putIntArray
(<code>String, int[]</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLong_changed(java.lang.String, long)" class="hiddenlink" target="rightframe">putLong
(<code>String, long</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putLongArray_changed(java.lang.String, long[])" class="hiddenlink" target="rightframe">putLongArray
(<code>String, long[]</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSize_added(java.lang.String, android.util.Size)" class="hiddenlink" target="rightframe"><b>putSize</b>
(<code>String, Size</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putSizeF_added(java.lang.String, android.util.SizeF)" class="hiddenlink" target="rightframe"><b>putSizeF</b>
(<code>String, SizeF</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putString_changed(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">putString
(<code>String, String</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.putStringArray_changed(java.lang.String, java.lang.String[])" class="hiddenlink" target="rightframe">putStringArray
(<code>String, String[]</code>)</A></nobr><br>
<A NAME="R"></A>
<br><font size="+2">R</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<i>readPersistableBundle</i><br>
<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.os.Parcel
</A></nobr><br>
<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readPersistableBundle_added(java.lang.ClassLoader)" class="hiddenlink" target="rightframe">type <b>
(<code>ClassLoader</code>)</b> in android.os.Parcel
</A></nobr><br>
<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSize_added()" class="hiddenlink" target="rightframe"><b>readSize</b>
()</A></nobr><br>
<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.readSizeF_added()" class="hiddenlink" target="rightframe"><b>readSizeF</b>
()</A></nobr><br>
<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.registerAidsForService_added(android.content.ComponentName, java.lang.String, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>registerAidsForService</b>
(<code>ComponentName, String, List<String></code>)</A></nobr><br>
<i>registerMediaButtonEventReceiver</i><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type
(<code>PendingIntent</code>) in android.media.AudioManager
</A></nobr><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type
(<code>ComponentName</code>) in android.media.AudioManager
</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.registerNetworkCallback_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>registerNetworkCallback</b>
(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">registerRemoteControlClient
(<code>RemoteControlClient</code>)</A></nobr><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.registerRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">registerRemoteController
(<code>RemoteController</code>)</A></nobr><br>
<nobr><A HREF="android.os.PowerManager.WakeLock.html#android.os.PowerManager.WakeLock.release_added(int)" class="hiddenlink" target="rightframe"><b>release</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.releaseInstance_added()" class="hiddenlink" target="rightframe"><b>releaseInstance</b>
()</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.releaseOutputBuffer_added(int, long)" class="hiddenlink" target="rightframe"><b>releaseOutputBuffer</b>
(<code>int, long</code>)</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.remove_changed(java.lang.String)" class="hiddenlink" target="rightframe">remove
(<code>String</code>)</A></nobr><br>
<i>removeAction</i><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(android.view.accessibility.AccessibilityNodeInfo.AccessibilityAction)" class="hiddenlink" target="rightframe">type <b>
(<code>AccessibilityAction</code>)</b> in android.view.accessibility.AccessibilityNodeInfo
</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeAction_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.view.accessibility.AccessibilityNodeInfo
</A></nobr><br>
<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.removeAidsForService_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAidsForService</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookie_changed()" class="hiddenlink" target="rightframe">removeAllCookie
()</A></nobr><br>
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeAllCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeAllCookies</b>
(<code>ValueCallback<Boolean></code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeAllTabs_changed()" class="hiddenlink" target="rightframe">removeAllTabs
()</A></nobr><br>
<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.removeAttribute_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>removeAttribute</b>
(<code>String</code>)</A></nobr><br>
<i>removeChild</i><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View)" class="hiddenlink" target="rightframe">type <b>
(<code>View</code>)</b> in android.view.accessibility.AccessibilityNodeInfo
</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.removeChild_added(android.view.View, int)" class="hiddenlink" target="rightframe">type <b>
(<code>View, int</code>)</b> in android.view.accessibility.AccessibilityNodeInfo
</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeCrossProfileWidgetProvider_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>removeCrossProfileWidgetProvider</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.removeDefaultNetworkActiveListener_added(android.net.ConnectivityManager.OnNetworkActiveListener)" class="hiddenlink" target="rightframe"><b>removeDefaultNetworkActiveListener</b>
(<code>OnNetworkActiveListener</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeExpiredCookie_changed()" class="hiddenlink" target="rightframe">removeExpiredCookie
()</A></nobr><br>
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookie_changed()" class="hiddenlink" target="rightframe">removeSessionCookie
()</A></nobr><br>
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.removeSessionCookies_added(android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>removeSessionCookies</b>
(<code>ValueCallback<Boolean></code>)</A></nobr><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">removeStickyBroadcast
(<code>Intent</code>)</A></nobr><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.removeStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">removeStickyBroadcastAsUser
(<code>Intent, UserHandle</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">removeTab
(<code>Tab</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.removeTabAt_changed(int)" class="hiddenlink" target="rightframe">removeTabAt
(<code>int</code>)</A></nobr><br>
<i>removeTarget</i><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.Class)" class="hiddenlink" target="rightframe">type <b>
(<code>Class</code>)</b> in android.transition.Transition
</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.removeTarget_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.transition.Transition
</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.removeUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>removeUser</b>
(<code>ComponentName, UserHandle</code>)</A></nobr><br>
<nobr><A HREF="android.accounts.AccountManager.html#android.accounts.AccountManager.renameAccount_added(android.accounts.Account, java.lang.String, android.accounts.AccountManagerCallback<android.accounts.Account>, android.os.Handler)" class="hiddenlink" target="rightframe"><b>renameAccount</b>
(<code>Account, String, AccountManagerCallback<Account>, Handler</code>)</A></nobr><br>
<i>renameDocument</i><br>
<nobr><A HREF="android.provider.DocumentsContract.html#android.provider.DocumentsContract.renameDocument_added(android.content.ContentResolver, android.net.Uri, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>ContentResolver, Uri, String</code>)</b> in android.provider.DocumentsContract
</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.renameDocument_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String, String</code>)</b> in android.provider.DocumentsProvider
</A></nobr><br>
<nobr><A HREF="android.view.WindowInsets.html#android.view.WindowInsets.replaceSystemWindowInsets_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>replaceSystemWindowInsets</b>
(<code>Rect</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.PhoneNumberUtils.html#android.telephony.PhoneNumberUtils.replaceUnicodeDigits_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>replaceUnicodeDigits</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.reportBadNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>reportBadNetwork</b>
(<code>Network</code>)</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestConnectionPriority_added(int)" class="hiddenlink" target="rightframe"><b>requestConnectionPriority</b>
(<code>int</code>)</A></nobr><br>
<i>requestCursorUpdates</i><br>
<nobr><A HREF="android.view.inputmethod.BaseInputConnection.html#android.view.inputmethod.BaseInputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.view.inputmethod.BaseInputConnection
</A></nobr><br>
<nobr><A HREF="android.view.inputmethod.InputConnection.html#android.view.inputmethod.InputConnection.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.view.inputmethod.InputConnection
</A></nobr><br>
<nobr><A HREF="android.view.inputmethod.InputConnectionWrapper.html#android.view.inputmethod.InputConnectionWrapper.requestCursorUpdates_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.view.inputmethod.InputConnectionWrapper
</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestInterruptionFilter_added(int)" class="hiddenlink" target="rightframe"><b>requestInterruptionFilter</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.service.notification.NotificationListenerService.html#android.service.notification.NotificationListenerService.requestListenerHints_added(int)" class="hiddenlink" target="rightframe"><b>requestListenerHints</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothGatt.html#android.bluetooth.BluetoothGatt.requestMtu_added(int)" class="hiddenlink" target="rightframe"><b>requestMtu</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestNetwork_added(android.net.NetworkRequest, android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>requestNetwork</b>
(<code>NetworkRequest, NetworkCallback</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.requestRouteToHost_changed(int, int)" class="hiddenlink" target="rightframe">requestRouteToHost
(<code>int, int</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.requestUnbufferedDispatch_added(android.view.MotionEvent)" class="hiddenlink" target="rightframe"><b>requestUnbufferedDispatch</b>
(<code>MotionEvent</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.requestVisibleBehind_added(boolean)" class="hiddenlink" target="rightframe"><b>requestVisibleBehind</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.reset_added()" class="hiddenlink" target="rightframe"><b>reset</b>
()</A></nobr><br>
<i>resize</i><br>
<nobr><A HREF="android.hardware.display.VirtualDisplay.html#android.hardware.display.VirtualDisplay.resize_added(int, int, int)" class="hiddenlink" target="rightframe">type <b>
(<code>int, int, int</code>)</b> in android.hardware.display.VirtualDisplay
</A></nobr><br>
<nobr><A HREF="android.util.LruCache.html#android.util.LruCache.resize_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.util.LruCache
</A></nobr><br>
<nobr><A HREF="android.provider.DocumentsProvider.html#android.provider.DocumentsProvider.revokeDocumentPermission_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>revokeDocumentPermission</b>
(<code>String</code>)</A></nobr><br>
<A NAME="S"></A>
<br><font size="+2">S</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<i>saveLayer</i><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(android.graphics.RectF, android.graphics.Paint)" class="hiddenlink" target="rightframe">type <b>
(<code>RectF, Paint</code>)</b> in android.graphics.Canvas
</A></nobr><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayer_added(float, float, float, float, android.graphics.Paint)" class="hiddenlink" target="rightframe">type <b>
(<code>float, float, float, float, Paint</code>)</b> in android.graphics.Canvas
</A></nobr><br>
<i>saveLayerAlpha</i><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(android.graphics.RectF, int)" class="hiddenlink" target="rightframe">type <b>
(<code>RectF, int</code>)</b> in android.graphics.Canvas
</A></nobr><br>
<nobr><A HREF="android.graphics.Canvas.html#android.graphics.Canvas.saveLayerAlpha_added(float, float, float, float, int)" class="hiddenlink" target="rightframe">type <b>
(<code>float, float, float, float, int</code>)</b> in android.graphics.Canvas
</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.selectTab_changed(android.app.ActionBar.Tab)" class="hiddenlink" target="rightframe">selectTab
(<code>Tab</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.TelephonyManager.html#android.telephony.TelephonyManager.sendEnvelopeWithStatus_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>sendEnvelopeWithStatus</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.telephony.SmsManager.html#android.telephony.SmsManager.sendMultimediaMessage_added(android.content.Context, android.net.Uri, java.lang.String, android.os.Bundle, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>sendMultimediaMessage</b>
(<code>Context, Uri, String, Bundle, PendingIntent</code>)</A></nobr><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcast_changed(android.content.Intent)" class="hiddenlink" target="rightframe">sendStickyBroadcast
(<code>Intent</code>)</A></nobr><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle)" class="hiddenlink" target="rightframe">sendStickyBroadcastAsUser
(<code>Intent, UserHandle</code>)</A></nobr><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcast_changed(android.content.Intent, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcast
(<code>Intent, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
<nobr><A HREF="android.content.Context.html#android.content.Context.sendStickyOrderedBroadcastAsUser_changed(android.content.Intent, android.os.UserHandle, android.content.BroadcastReceiver, android.os.Handler, int, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe">sendStickyOrderedBroadcastAsUser
(<code>Intent, UserHandle, BroadcastReceiver, Handler, int, String, Bundle</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setAcceptThirdPartyCookies_added(android.webkit.WebView, boolean)" class="hiddenlink" target="rightframe"><b>setAcceptThirdPartyCookies</b>
(<code>WebView, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAccountManagementDisabled_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setAccountManagementDisabled</b>
(<code>ComponentName, String, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.setActionBar_added(android.widget.Toolbar)" class="hiddenlink" target="rightframe"><b>setActionBar</b>
(<code>Toolbar</code>)</A></nobr><br>
<nobr><A HREF="android.app.AlarmManager.html#android.app.AlarmManager.setAlarmClock_added(android.app.AlarmManager.AlarmClockInfo, android.app.PendingIntent)" class="hiddenlink" target="rightframe"><b>setAlarmClock</b>
(<code>AlarmClockInfo, PendingIntent</code>)</A></nobr><br>
<i>setAllowEnterTransitionOverlap</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>boolean</code>)</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowEnterTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>boolean</code>)</b> in android.view.Window
</A></nobr><br>
<i>setAllowReturnTransitionOverlap</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>boolean</code>)</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setAllowReturnTransitionOverlap_added(boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>boolean</code>)</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationHidden_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setApplicationHidden</b>
(<code>ComponentName, String, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setApplicationRestrictions_added(android.content.ComponentName, java.lang.String, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>setApplicationRestrictions</b>
(<code>ComponentName, String, Bundle</code>)</A></nobr><br>
<nobr><A HREF="android.net.nsd.NsdServiceInfo.html#android.net.nsd.NsdServiceInfo.setAttribute_added(java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setAttribute</b>
(<code>String, String</code>)</A></nobr><br>
<i>setAudioAttributes</i><br>
<nobr><A HREF="android.media.MediaPlayer.html#android.media.MediaPlayer.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type <b>
(<code>AudioAttributes</code>)</b> in android.media.MediaPlayer
</A></nobr><br>
<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type <b>
(<code>AudioAttributes</code>)</b> in android.media.Ringtone
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setAudioAttributes_added(android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type <b>
(<code>AudioAttributes</code>)</b> in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setAutoTimeRequired_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setAutoTimeRequired</b>
(<code>ComponentName, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setBackgroundTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setBackgroundTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.net.VpnService.Builder.html#android.net.VpnService.Builder.setBlocking_added(boolean)" class="hiddenlink" target="rightframe"><b>setBlocking</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setButtonTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.CompoundButton.html#android.widget.CompoundButton.setButtonTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setButtonTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaCodec.html#android.media.MediaCodec.setCallback_added(android.media.MediaCodec.Callback)" class="hiddenlink" target="rightframe"><b>setCallback</b>
(<code>Callback</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaRecorder.html#android.media.MediaRecorder.setCamera_changed(android.hardware.Camera)" class="hiddenlink" target="rightframe">setCamera
(<code>Camera</code>)</A></nobr><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setCategory_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setCategory</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.CheckedTextView.html#android.widget.CheckedTextView.setCheckMarkTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setCheckMarkTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setClipToOutline_added(boolean)" class="hiddenlink" target="rightframe"><b>setClipToOutline</b>
(<code>boolean</code>)</A></nobr><br>
<i>setColor</i><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setColor_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.app.Notification.Builder
</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setColor_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type <b>
(<code>ColorStateList</code>)</b> in android.graphics.drawable.GradientDrawable
</A></nobr><br>
<nobr><A HREF="android.widget.EdgeEffect.html#android.widget.EdgeEffect.setColor_added(int)" class="hiddenlink" target="rightframe">type <b>
(<code>int</code>)</b> in android.widget.EdgeEffect
</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setConfiguration_added(android.hardware.usb.UsbConfiguration)" class="hiddenlink" target="rightframe"><b>setConfiguration</b>
(<code>UsbConfiguration</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.setContentTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setContentTransitionManager</b>
(<code>TransitionManager</code>)</A></nobr><br>
<nobr><A HREF="android.animation.PropertyValuesHolder.html#android.animation.PropertyValuesHolder.setConverter_added(android.animation.TypeConverter)" class="hiddenlink" target="rightframe"><b>setConverter</b>
(<code>TypeConverter</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.CookieManager.html#android.webkit.CookieManager.setCookie_added(java.lang.String, java.lang.String, android.webkit.ValueCallback<java.lang.Boolean>)" class="hiddenlink" target="rightframe"><b>setCookie</b>
(<code>String, String, ValueCallback<Boolean></code>)</A></nobr><br>
<nobr><A HREF="android.media.Image.html#android.media.Image.setCropRect_added(android.graphics.Rect)" class="hiddenlink" target="rightframe"><b>setCropRect</b>
(<code>Rect</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setCrossProfileCallerIdDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setCrossProfileCallerIdDisabled</b>
(<code>ComponentName, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setDrawable_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setDrawable</b>
(<code>Drawable</code>)</A></nobr><br>
<i>setElegantTextHeight</i><br>
<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>boolean</code>)</b> in android.graphics.Paint
</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setElegantTextHeight_added(boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>boolean</code>)</b> in android.widget.TextView
</A></nobr><br>
<i>setElevation</i><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setElevation_added(float)" class="hiddenlink" target="rightframe">type <b>
(<code>float</code>)</b> in android.app.ActionBar
</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setElevation_added(float)" class="hiddenlink" target="rightframe">type <b>
(<code>float</code>)</b> in android.view.View
</A></nobr><br>
<nobr><A HREF="android.widget.PopupWindow.html#android.widget.PopupWindow.setElevation_added(float)" class="hiddenlink" target="rightframe">type <b>
(<code>float</code>)</b> in android.widget.PopupWindow
</A></nobr><br>
<i>setEnterSharedElementCallback</i><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type <b>
(<code>SharedElementCallback</code>)</b> in android.app.Activity
</A></nobr><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type <b>
(<code>SharedElementCallback</code>)</b> in android.app.Fragment
</A></nobr><br>
<i>setEnterTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setEpicenterCallback_added(android.transition.Transition.EpicenterCallback)" class="hiddenlink" target="rightframe"><b>setEpicenterCallback</b>
(<code>EpicenterCallback</code>)</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setError_added(java.lang.CharSequence)" class="hiddenlink" target="rightframe"><b>setError</b>
(<code>CharSequence</code>)</A></nobr><br>
<i>setExitSharedElementCallback</i><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type <b>
(<code>SharedElementCallback</code>)</b> in android.app.Activity
</A></nobr><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitSharedElementCallback_added(android.app.SharedElementCallback)" class="hiddenlink" target="rightframe">type <b>
(<code>SharedElementCallback</code>)</b> in android.app.Fragment
</A></nobr><br>
<i>setExitTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setFastScrollStyle_added(int)" class="hiddenlink" target="rightframe"><b>setFastScrollStyle</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.media.MediaFormat.html#android.media.MediaFormat.setFeatureEnabled_added(java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setFeatureEnabled</b>
(<code>String, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.widget.DatePicker.html#android.widget.DatePicker.setFirstDayOfWeek_added(int)" class="hiddenlink" target="rightframe"><b>setFirstDayOfWeek</b>
(<code>int</code>)</A></nobr><br>
<i>setFontFeatureSettings</i><br>
<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.graphics.Paint
</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setFontFeatureSettings_added(java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>String</code>)</b> in android.widget.TextView
</A></nobr><br>
<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setForegroundTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.FrameLayout.html#android.widget.FrameLayout.setForegroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setForegroundTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setFromDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setFromDegrees</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setGlobalSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setGlobalSetting</b>
(<code>ComponentName, String, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOffset_added(int)" class="hiddenlink" target="rightframe"><b>setHideOffset</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setHideOnContentScrollEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setHideOnContentScrollEnabled</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspot_added(float, float)" class="hiddenlink" target="rightframe"><b>setHotspot</b>
(<code>float, float</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setHotspotBounds_added(int, int, int, int)" class="hiddenlink" target="rightframe"><b>setHotspotBounds</b>
(<code>int, int, int, int</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setImageTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ImageView.html#android.widget.ImageView.setImageTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setImageTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setIndeterminateDrawableTiled</b>
(<code>Drawable</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setIndeterminateTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setIndeterminateTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.hardware.usb.UsbDeviceConnection.html#android.hardware.usb.UsbDeviceConnection.setInterface_added(android.hardware.usb.UsbInterface)" class="hiddenlink" target="rightframe"><b>setInterface</b>
(<code>UsbInterface</code>)</A></nobr><br>
<nobr><A HREF="android.content.RestrictionEntry.html#android.content.RestrictionEntry.setIntValue_added(int)" class="hiddenlink" target="rightframe"><b>setIntValue</b>
(<code>int</code>)</A></nobr><br>
<i>setLetterSpacing</i><br>
<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type <b>
(<code>float</code>)</b> in android.graphics.Paint
</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setLetterSpacing_added(float)" class="hiddenlink" target="rightframe">type <b>
(<code>float</code>)</b> in android.widget.TextView
</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setListNavigationCallbacks_changed(android.widget.SpinnerAdapter, android.app.ActionBar.OnNavigationListener)" class="hiddenlink" target="rightframe">setListNavigationCallbacks
(<code>SpinnerAdapter, OnNavigationListener</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setLockTaskPackages_added(android.content.ComponentName, java.lang.String[])" class="hiddenlink" target="rightframe"><b>setLockTaskPackages</b>
(<code>ComponentName, String[]</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setMasterVolumeMuted_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setMasterVolumeMuted</b>
(<code>ComponentName, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setMatchOrder_added(int...)" class="hiddenlink" target="rightframe"><b>setMatchOrder</b>
()</A></nobr><br>
<nobr><A HREF="android.view.accessibility.AccessibilityNodeInfo.html#android.view.accessibility.AccessibilityNodeInfo.setMaxTextLength_added(int)" class="hiddenlink" target="rightframe"><b>setMaxTextLength</b>
(<code>int</code>)</A></nobr><br>
<i>setMediaController</i><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type <b>
(<code>MediaController</code>)</b> in android.app.Activity
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setMediaController_added(android.media.session.MediaController)" class="hiddenlink" target="rightframe">type <b>
(<code>MediaController</code>)</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.webkit.WebSettings.html#android.webkit.WebSettings.setMixedContentMode_added(int)" class="hiddenlink" target="rightframe"><b>setMixedContentMode</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.transition.Visibility.html#android.transition.Visibility.setMode_added(int)" class="hiddenlink" target="rightframe"><b>setMode</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setNavigationBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setNavigationBarColor</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setNavigationMode_changed(int)" class="hiddenlink" target="rightframe">setNavigationMode
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setNestedScrollingEnabled_added(boolean)" class="hiddenlink" target="rightframe"><b>setNestedScrollingEnabled</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setNetworkPreference_changed(int)" class="hiddenlink" target="rightframe">setNetworkPreference
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.SurfaceTexture.html#android.graphics.SurfaceTexture.setOnFrameAvailableListener_added(android.graphics.SurfaceTexture.OnFrameAvailableListener, android.os.Handler)" class="hiddenlink" target="rightframe"><b>setOnFrameAvailableListener</b>
(<code>OnFrameAvailableListener, Handler</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setOutlineProvider_added(android.view.ViewOutlineProvider)" class="hiddenlink" target="rightframe"><b>setOutlineProvider</b>
(<code>ViewOutlineProvider</code>)</A></nobr><br>
<nobr><A HREF="android.widget.QuickContactBadge.html#android.widget.QuickContactBadge.setOverlay_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setOverlay</b>
(<code>Drawable</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.LayerDrawable.html#android.graphics.drawable.LayerDrawable.setPaddingMode_added(int)" class="hiddenlink" target="rightframe"><b>setPaddingMode</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPathMotion_added(android.transition.PathMotion)" class="hiddenlink" target="rightframe"><b>setPathMotion</b>
(<code>PathMotion</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedAccessibilityServices_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedAccessibilityServices</b>
(<code>ComponentName, List<String></code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setPermittedInputMethods_added(android.content.ComponentName, java.util.List<java.lang.String>)" class="hiddenlink" target="rightframe"><b>setPermittedInputMethods</b>
(<code>ComponentName, List<String></code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotX_added(float)" class="hiddenlink" target="rightframe"><b>setPivotX</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotXRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotXRelative</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotY_added(float)" class="hiddenlink" target="rightframe"><b>setPivotY</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setPivotYRelative_added(boolean)" class="hiddenlink" target="rightframe"><b>setPivotYRelative</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.setPreferredService_added(android.app.Activity, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setPreferredService</b>
(<code>Activity, ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.setProcessDefaultNetwork_added(android.net.Network)" class="hiddenlink" target="rightframe"><b>setProcessDefaultNetwork</b>
(<code>Network</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileEnabled_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setProfileEnabled</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setProfileName_added(android.content.ComponentName, java.lang.String)" class="hiddenlink" target="rightframe"><b>setProfileName</b>
(<code>ComponentName, String</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressBackgroundTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressBackgroundTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressDrawableTiled_added(android.graphics.drawable.Drawable)" class="hiddenlink" target="rightframe"><b>setProgressDrawableTiled</b>
(<code>Drawable</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setProgressTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setProgressTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.transition.Transition.html#android.transition.Transition.setPropagation_added(android.transition.TransitionPropagation)" class="hiddenlink" target="rightframe"><b>setPropagation</b>
(<code>TransitionPropagation</code>)</A></nobr><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setPublicVersion_added(android.app.Notification)" class="hiddenlink" target="rightframe"><b>setPublicVersion</b>
(<code>Notification</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.Paint.html#android.graphics.Paint.setRasterizer_changed(android.graphics.Rasterizer)" class="hiddenlink" target="rightframe">setRasterizer
(<code>Rasterizer</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRecommendedGlobalProxy_added(android.content.ComponentName, android.net.ProxyInfo)" class="hiddenlink" target="rightframe"><b>setRecommendedGlobalProxy</b>
(<code>ComponentName, ProxyInfo</code>)</A></nobr><br>
<i>setReenterTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="java.util.concurrent.ScheduledThreadPoolExecutor.html#java.util.concurrent.ScheduledThreadPoolExecutor.setRemoveOnCancelPolicy_added(boolean)" class="hiddenlink" target="rightframe"><b>setRemoveOnCancelPolicy</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.transition.ChangeBounds.html#android.transition.ChangeBounds.setReparent_changed(boolean)" class="hiddenlink" target="rightframe">setReparent
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setResponseHeaders_added(java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setResponseHeaders</b>
(<code>Map<String, String></code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setRestrictionsProvider_added(android.content.ComponentName, android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>setRestrictionsProvider</b>
(<code>ComponentName, ComponentName</code>)</A></nobr><br>
<i>setReturnTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setScreenCaptureDisabled_added(android.content.ComponentName, boolean)" class="hiddenlink" target="rightframe"><b>setScreenCaptureDisabled</b>
(<code>ComponentName, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.ProgressBar.html#android.widget.ProgressBar.setSecondaryProgressTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setSecondaryProgressTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setSecureSetting_added(android.content.ComponentName, java.lang.String, java.lang.String)" class="hiddenlink" target="rightframe"><b>setSecureSetting</b>
(<code>ComponentName, String, String</code>)</A></nobr><br>
<nobr><A HREF="android.app.ActionBar.html#android.app.ActionBar.setSelectedNavigationItem_changed(int)" class="hiddenlink" target="rightframe">setSelectedNavigationItem
(<code>int</code>)</A></nobr><br>
<i>setSelectionFromTop</i><br>
<nobr><A HREF="android.widget.AbsListView.html#android.widget.AbsListView.setSelectionFromTop_added(int, int)" class="hiddenlink" target="rightframe">type <b>
(<code>int, int</code>)</b> in android.widget.AbsListView
</A></nobr><br>
<nobr><A HREF="android.widget.ListView.html#android.widget.ListView.setSelectionFromTop_changed(int, int)" class="hiddenlink" target="rightframe">type
(<code>int, int</code>) in android.widget.ListView
</A></nobr><br>
<i>setSharedElementEnterTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementEnterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementExitTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementExitTransition</b>
(<code>Transition</code>)</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReenterTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe"><b>setSharedElementReenterTransition</b>
(<code>Transition</code>)</A></nobr><br>
<i>setSharedElementReturnTransition</i><br>
<nobr><A HREF="android.app.Fragment.html#android.app.Fragment.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.app.Fragment
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementReturnTransition_added(android.transition.Transition)" class="hiddenlink" target="rightframe">type <b>
(<code>Transition</code>)</b> in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setSharedElementsUseOverlay_added(boolean)" class="hiddenlink" target="rightframe"><b>setSharedElementsUseOverlay</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.widget.TextView.html#android.widget.TextView.setShowSoftInputOnFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowSoftInputOnFocus</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setShowText_added(boolean)" class="hiddenlink" target="rightframe"><b>setShowText</b>
(<code>boolean</code>)</A></nobr><br>
<i>setSound</i><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_removed(android.net.Uri, int)" class="hiddenlink" target="rightframe">type <strike>
(<code>Uri, int</code>)</strike> in android.app.Notification.Builder
</A></nobr><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type <b>
(<code>Uri, AudioAttributes</code>)</b> in android.app.Notification.Builder
</A></nobr><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setSound_added(android.net.Uri, int)" class="hiddenlink" target="rightframe">type <b>
(<code>Uri, int</code>)</b> in android.app.Notification.Builder
</A></nobr><br>
<i>setSplitTrack</i><br>
<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>boolean</code>)</b> in android.widget.AbsSeekBar
</A></nobr><br>
<nobr><A HREF="android.widget.Switch.html#android.widget.Switch.setSplitTrack_added(boolean)" class="hiddenlink" target="rightframe">type <b>
(<code>boolean</code>)</b> in android.widget.Switch
</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setStateListAnimator_added(android.animation.StateListAnimator)" class="hiddenlink" target="rightframe"><b>setStateListAnimator</b>
(<code>StateListAnimator</code>)</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setStatusBarColor_added(int)" class="hiddenlink" target="rightframe"><b>setStatusBarColor</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.WebResourceResponse.html#android.webkit.WebResourceResponse.setStatusCodeAndReasonPhrase_added(int, java.lang.String)" class="hiddenlink" target="rightframe"><b>setStatusCodeAndReasonPhrase</b>
(<code>int, String</code>)</A></nobr><br>
<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setStereoVolume_changed(float, float)" class="hiddenlink" target="rightframe">setStereoVolume
(<code>float, float</code>)</A></nobr><br>
<nobr><A HREF="android.media.Ringtone.html#android.media.Ringtone.setStreamType_changed(int)" class="hiddenlink" target="rightframe">setStreamType
(<code>int</code>)</A></nobr><br>
<i>setStroke</i><br>
<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList)" class="hiddenlink" target="rightframe">type <b>
(<code>int, ColorStateList</code>)</b> in android.graphics.drawable.GradientDrawable
</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.GradientDrawable.html#android.graphics.drawable.GradientDrawable.setStroke_added(int, android.content.res.ColorStateList, float, float)" class="hiddenlink" target="rightframe">type <b>
(<code>int, ColorStateList, float, float</code>)</b> in android.graphics.drawable.GradientDrawable
</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTaskDescription_added(android.app.ActivityManager.TaskDescription)" class="hiddenlink" target="rightframe"><b>setTaskDescription</b>
(<code>TaskDescription</code>)</A></nobr><br>
<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setThumbTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.widget.AbsSeekBar.html#android.widget.AbsSeekBar.setThumbTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setThumbTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setTicker_changed(java.lang.CharSequence, android.widget.RemoteViews)" class="hiddenlink" target="rightframe">setTicker
(<code>CharSequence, RemoteViews</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTint_added(int)" class="hiddenlink" target="rightframe"><b>setTint</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintList_added(android.content.res.ColorStateList)" class="hiddenlink" target="rightframe"><b>setTintList</b>
(<code>ColorStateList</code>)</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.Drawable.html#android.graphics.drawable.Drawable.setTintMode_added(android.graphics.PorterDuff.Mode)" class="hiddenlink" target="rightframe"><b>setTintMode</b>
(<code>Mode</code>)</A></nobr><br>
<i>setTitleColor</i><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type
(<code>int</code>) in android.app.Activity
</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setTitleColor_changed(int)" class="hiddenlink" target="rightframe">type
(<code>int</code>) in android.view.Window
</A></nobr><br>
<nobr><A HREF="android.graphics.drawable.RotateDrawable.html#android.graphics.drawable.RotateDrawable.setToDegrees_added(float)" class="hiddenlink" target="rightframe"><b>setToDegrees</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTouchscreenBlocksFocus_added(boolean)" class="hiddenlink" target="rightframe"><b>setTouchscreenBlocksFocus</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionBackgroundFadeDuration_added(long)" class="hiddenlink" target="rightframe"><b>setTransitionBackgroundFadeDuration</b>
(<code>long</code>)</A></nobr><br>
<nobr><A HREF="android.view.ViewGroup.html#android.view.ViewGroup.setTransitionGroup_added(boolean)" class="hiddenlink" target="rightframe"><b>setTransitionGroup</b>
(<code>boolean</code>)</A></nobr><br>
<nobr><A HREF="android.view.Window.html#android.view.Window.setTransitionManager_added(android.transition.TransitionManager)" class="hiddenlink" target="rightframe"><b>setTransitionManager</b>
(<code>TransitionManager</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setTransitionName_added(java.lang.String)" class="hiddenlink" target="rightframe"><b>setTransitionName</b>
(<code>String</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setTranslationZ_added(float)" class="hiddenlink" target="rightframe"><b>setTranslationZ</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.setUninstallBlocked_added(android.content.ComponentName, java.lang.String, boolean)" class="hiddenlink" target="rightframe"><b>setUninstallBlocked</b>
(<code>ComponentName, String, boolean</code>)</A></nobr><br>
<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestriction_changed(java.lang.String, boolean)" class="hiddenlink" target="rightframe">setUserRestriction
(<code>String, boolean</code>)</A></nobr><br>
<i>setUserRestrictions</i><br>
<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle)" class="hiddenlink" target="rightframe">type
(<code>Bundle</code>) in android.os.UserManager
</A></nobr><br>
<nobr><A HREF="android.os.UserManager.html#android.os.UserManager.setUserRestrictions_changed(android.os.Bundle, android.os.UserHandle)" class="hiddenlink" target="rightframe">type
(<code>Bundle, UserHandle</code>) in android.os.UserManager
</A></nobr><br>
<nobr><A HREF="android.widget.VideoView.html#android.widget.VideoView.setVideoURI_added(android.net.Uri, java.util.Map<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe"><b>setVideoURI</b>
(<code>Uri, Map<String, String></code>)</A></nobr><br>
<nobr><A HREF="android.app.AlertDialog.Builder.html#android.app.AlertDialog.Builder.setView_added(int)" class="hiddenlink" target="rightframe"><b>setView</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.app.Notification.Builder.html#android.app.Notification.Builder.setVisibility_added(int)" class="hiddenlink" target="rightframe"><b>setVisibility</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.setVoice_added(android.speech.tts.Voice)" class="hiddenlink" target="rightframe"><b>setVoice</b>
(<code>Voice</code>)</A></nobr><br>
<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.setVolume_added(float)" class="hiddenlink" target="rightframe"><b>setVolume</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.setZ_added(float)" class="hiddenlink" target="rightframe"><b>setZ</b>
(<code>float</code>)</A></nobr><br>
<i>shouldInterceptRequest</i><br>
<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_removed(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type <strike>
(<code>WebView, String</code>)</strike> in android.webkit.WebViewClient
</A></nobr><br>
<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, android.webkit.WebResourceRequest)" class="hiddenlink" target="rightframe">type <b>
(<code>WebView, WebResourceRequest</code>)</b> in android.webkit.WebViewClient
</A></nobr><br>
<nobr><A HREF="android.webkit.WebViewClient.html#android.webkit.WebViewClient.shouldInterceptRequest_added(android.webkit.WebView, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>WebView, String</code>)</b> in android.webkit.WebViewClient
</A></nobr><br>
<nobr><A HREF="android.os.Bundle.html#android.os.Bundle.size_changed()" class="hiddenlink" target="rightframe">size
()</A></nobr><br>
<i>speak</i><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_added(java.lang.CharSequence, int, android.os.Bundle, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>CharSequence, int, Bundle, String</code>)</b> in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.speak_changed(java.lang.String, int, java.util.HashMap<java.lang.String, java.lang.String>)" class="hiddenlink" target="rightframe">type
(<code>String, int, HashMap<String, String></code>) in android.speech.tts.TextToSpeech
</A></nobr><br>
<i>spec</i><br>
<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type <b>
(<code>int, Alignment, float</code>)</b> in android.widget.GridLayout
</A></nobr><br>
<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, float)" class="hiddenlink" target="rightframe">type <b>
(<code>int, float</code>)</b> in android.widget.GridLayout
</A></nobr><br>
<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, android.widget.GridLayout.Alignment, float)" class="hiddenlink" target="rightframe">type <b>
(<code>int, int, Alignment, float</code>)</b> in android.widget.GridLayout
</A></nobr><br>
<nobr><A HREF="android.widget.GridLayout.html#android.widget.GridLayout.spec_added(int, int, float)" class="hiddenlink" target="rightframe">type <b>
(<code>int, int, float</code>)</b> in android.widget.GridLayout
</A></nobr><br>
<nobr><A HREF="android.appwidget.AppWidgetHost.html#android.appwidget.AppWidgetHost.startAppWidgetConfigureActivityForResult_added(android.app.Activity, int, int, int, android.os.Bundle)" class="hiddenlink" target="rightframe"><b>startAppWidgetConfigureActivityForResult</b>
(<code>Activity, int, int, int, Bundle</code>)</A></nobr><br>
<i>startLeScan</i><br>
<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type
(<code>LeScanCallback</code>) in android.bluetooth.BluetoothAdapter
</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.startLeScan_changed(java.util.UUID[], android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">type
(<code>UUID[], LeScanCallback</code>) in android.bluetooth.BluetoothAdapter
</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.startLockTask_added()" class="hiddenlink" target="rightframe"><b>startLockTask</b>
()</A></nobr><br>
<nobr><A HREF="android.os.Debug.html#android.os.Debug.startMethodTracingSampling_added(java.lang.String, int, int)" class="hiddenlink" target="rightframe"><b>startMethodTracingSampling</b>
(<code>String, int, int</code>)</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.startNestedScroll_added(int)" class="hiddenlink" target="rightframe"><b>startNestedScroll</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.startPostponedEnterTransition_added()" class="hiddenlink" target="rightframe"><b>startPostponedEnterTransition</b>
()</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.startUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">startUsingNetworkFeature
(<code>int, String</code>)</A></nobr><br>
<nobr><A HREF="android.net.wifi.WifiManager.html#android.net.wifi.WifiManager.startWps_added(android.net.wifi.WpsInfo, android.net.wifi.WifiManager.WpsCallback)" class="hiddenlink" target="rightframe"><b>startWps</b>
(<code>WpsInfo, WpsCallback</code>)</A></nobr><br>
<nobr><A HREF="android.bluetooth.BluetoothAdapter.html#android.bluetooth.BluetoothAdapter.stopLeScan_changed(android.bluetooth.BluetoothAdapter.LeScanCallback)" class="hiddenlink" target="rightframe">stopLeScan
(<code>LeScanCallback</code>)</A></nobr><br>
<nobr><A HREF="android.app.Activity.html#android.app.Activity.stopLockTask_added()" class="hiddenlink" target="rightframe"><b>stopLockTask</b>
()</A></nobr><br>
<nobr><A HREF="android.view.View.html#android.view.View.stopNestedScroll_added()" class="hiddenlink" target="rightframe"><b>stopNestedScroll</b>
()</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.stopUsingNetworkFeature_changed(int, java.lang.String)" class="hiddenlink" target="rightframe">stopUsingNetworkFeature
(<code>int, String</code>)</A></nobr><br>
<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.supportsAidPrefixRegistration_added()" class="hiddenlink" target="rightframe"><b>supportsAidPrefixRegistration</b>
()</A></nobr><br>
<nobr><A HREF="android.view.InputDevice.html#android.view.InputDevice.supportsSource_added(int)" class="hiddenlink" target="rightframe"><b>supportsSource</b>
(<code>int</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.switchUser_added(android.content.ComponentName, android.os.UserHandle)" class="hiddenlink" target="rightframe"><b>switchUser</b>
(<code>ComponentName, UserHandle</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.CookieSyncManager.html#android.webkit.CookieSyncManager.syncFromRamToFlash_changed()" class="hiddenlink" target="rightframe">syncFromRamToFlash
()</A></nobr><br>
<i>synthesizeToFile</i><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_added(java.lang.CharSequence, android.os.Bundle, java.io.File, java.lang.String)" class="hiddenlink" target="rightframe">type <b>
(<code>CharSequence, Bundle, File, String</code>)</b> in android.speech.tts.TextToSpeech
</A></nobr><br>
<nobr><A HREF="android.speech.tts.TextToSpeech.html#android.speech.tts.TextToSpeech.synthesizeToFile_changed(java.lang.String, java.util.HashMap<java.lang.String, java.lang.String>, java.lang.String)" class="hiddenlink" target="rightframe">type
(<code>String, HashMap<String, String>, String</code>) in android.speech.tts.TextToSpeech
</A></nobr><br>
<A NAME="T"></A>
<br><font size="+2">T</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="java.util.Locale.html#java.util.Locale.toLanguageTag_added()" class="hiddenlink" target="rightframe"><b>toLanguageTag</b>
()</A></nobr><br>
<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZ_added(float)" class="hiddenlink" target="rightframe"><b>translationZ</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.translationZBy_added(float)" class="hiddenlink" target="rightframe"><b>translationZBy</b>
(<code>float</code>)</A></nobr><br>
<A NAME="U"></A>
<br><font size="+2">U</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallAllUserCaCerts_added(android.content.ComponentName)" class="hiddenlink" target="rightframe"><b>uninstallAllUserCaCerts</b>
(<code>ComponentName</code>)</A></nobr><br>
<nobr><A HREF="android.app.admin.DevicePolicyManager.html#android.app.admin.DevicePolicyManager.uninstallCaCert_added(android.content.ComponentName, byte[])" class="hiddenlink" target="rightframe"><b>uninstallCaCert</b>
(<code>ComponentName, byte[]</code>)</A></nobr><br>
<i>unregisterMediaButtonEventReceiver</i><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.app.PendingIntent)" class="hiddenlink" target="rightframe">type
(<code>PendingIntent</code>) in android.media.AudioManager
</A></nobr><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterMediaButtonEventReceiver_changed(android.content.ComponentName)" class="hiddenlink" target="rightframe">type
(<code>ComponentName</code>) in android.media.AudioManager
</A></nobr><br>
<nobr><A HREF="android.net.ConnectivityManager.html#android.net.ConnectivityManager.unregisterNetworkCallback_added(android.net.ConnectivityManager.NetworkCallback)" class="hiddenlink" target="rightframe"><b>unregisterNetworkCallback</b>
(<code>NetworkCallback</code>)</A></nobr><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteControlClient_changed(android.media.RemoteControlClient)" class="hiddenlink" target="rightframe">unregisterRemoteControlClient
(<code>RemoteControlClient</code>)</A></nobr><br>
<nobr><A HREF="android.media.AudioManager.html#android.media.AudioManager.unregisterRemoteController_changed(android.media.RemoteController)" class="hiddenlink" target="rightframe">unregisterRemoteController
(<code>RemoteController</code>)</A></nobr><br>
<nobr><A HREF="android.nfc.cardemulation.CardEmulation.html#android.nfc.cardemulation.CardEmulation.unsetPreferredService_added(android.app.Activity)" class="hiddenlink" target="rightframe"><b>unsetPreferredService</b>
(<code>Activity</code>)</A></nobr><br>
<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursor_changed(android.view.View, int, int, int, int)" class="hiddenlink" target="rightframe">updateCursor
(<code>View, int, int, int, int</code>)</A></nobr><br>
<i>updateCursorAnchorInfo</i><br>
<nobr><A HREF="android.inputmethodservice.InputMethodService.InputMethodSessionImpl.html#android.inputmethodservice.InputMethodService.InputMethodSessionImpl.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type <b>
(<code>CursorAnchorInfo</code>)</b> in android.inputmethodservice.InputMethodService.InputMethodSessionImpl
</A></nobr><br>
<nobr><A HREF="android.view.inputmethod.InputMethodManager.html#android.view.inputmethod.InputMethodManager.updateCursorAnchorInfo_added(android.view.View, android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type <b>
(<code>View, CursorAnchorInfo</code>)</b> in android.view.inputmethod.InputMethodManager
</A></nobr><br>
<nobr><A HREF="android.view.inputmethod.InputMethodSession.html#android.view.inputmethod.InputMethodSession.updateCursorAnchorInfo_added(android.view.inputmethod.CursorAnchorInfo)" class="hiddenlink" target="rightframe">type <b>
(<code>CursorAnchorInfo</code>)</b> in android.view.inputmethod.InputMethodSession
</A></nobr><br>
<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.userActivity_removed(long, boolean)" class="hiddenlink" target="rightframe"><strike>userActivity</strike>
(<code>long, boolean</code>)</A></nobr><br>
<A NAME="V"></A>
<br><font size="+2">V</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<i>vibrate</i><br>
<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_removed(long[], int)" class="hiddenlink" target="rightframe">type <strike>
(<code>long[], int</code>)</strike> in android.os.Vibrator
</A></nobr><br>
<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type <b>
(<code>long, AudioAttributes</code>)</b> in android.os.Vibrator
</A></nobr><br>
<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int)" class="hiddenlink" target="rightframe">type <b>
(<code>long[], int</code>)</b> in android.os.Vibrator
</A></nobr><br>
<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_added(long[], int, android.media.AudioAttributes)" class="hiddenlink" target="rightframe">type <b>
(<code>long[], int, AudioAttributes</code>)</b> in android.os.Vibrator
</A></nobr><br>
<nobr><A HREF="android.os.Vibrator.html#android.os.Vibrator.vibrate_changed(long)" class="hiddenlink" target="rightframe">type
(<code>long</code>) in android.os.Vibrator
</A></nobr><br>
<A NAME="W"></A>
<br><font size="+2">W</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#Z"><font size="-2">Z</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<i>wakeUp</i><br>
<nobr><A HREF="android.os.PowerManager.html#android.os.PowerManager.wakeUp_removed(long)" class="hiddenlink" target="rightframe">type <strike>
(<code>long</code>)</strike> in android.os.PowerManager
</A></nobr><br>
<nobr><A HREF="android.service.dreams.DreamService.html#android.service.dreams.DreamService.wakeUp_added()" class="hiddenlink" target="rightframe">type <b>
()</b> in android.service.dreams.DreamService
</A></nobr><br>
<i>write</i><br>
<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(float[], int, int, int)" class="hiddenlink" target="rightframe">type <b>
(<code>float[], int, int, int</code>)</b> in android.media.AudioTrack
</A></nobr><br>
<nobr><A HREF="android.media.AudioTrack.html#android.media.AudioTrack.write_added(java.nio.ByteBuffer, int, int)" class="hiddenlink" target="rightframe">type <b>
(<code>ByteBuffer, int, int</code>)</b> in android.media.AudioTrack
</A></nobr><br>
<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writePersistableBundle_added(android.os.PersistableBundle)" class="hiddenlink" target="rightframe"><b>writePersistableBundle</b>
(<code>PersistableBundle</code>)</A></nobr><br>
<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSize_added(android.util.Size)" class="hiddenlink" target="rightframe"><b>writeSize</b>
(<code>Size</code>)</A></nobr><br>
<nobr><A HREF="android.os.Parcel.html#android.os.Parcel.writeSizeF_added(android.util.SizeF)" class="hiddenlink" target="rightframe"><b>writeSizeF</b>
(<code>SizeF</code>)</A></nobr><br>
<A NAME="Z"></A>
<br><font size="+2">Z</font>
<a href="#A"><font size="-2">A</font></a>
<a href="#B"><font size="-2">B</font></a>
<a href="#C"><font size="-2">C</font></a>
<a href="#D"><font size="-2">D</font></a>
<a href="#E"><font size="-2">E</font></a>
<a href="#F"><font size="-2">F</font></a>
<a href="#G"><font size="-2">G</font></a>
<a href="#H"><font size="-2">H</font></a>
<a href="#I"><font size="-2">I</font></a>
<a href="#K"><font size="-2">K</font></a>
<a href="#L"><font size="-2">L</font></a>
<a href="#M"><font size="-2">M</font></a>
<a href="#N"><font size="-2">N</font></a>
<a href="#O"><font size="-2">O</font></a>
<a href="#P"><font size="-2">P</font></a>
<a href="#R"><font size="-2">R</font></a>
<a href="#S"><font size="-2">S</font></a>
<a href="#T"><font size="-2">T</font></a>
<a href="#U"><font size="-2">U</font></a>
<a href="#V"><font size="-2">V</font></a>
<a href="#W"><font size="-2">W</font></a>
<a href="#topheader"><font size="-2">TOP</font></a>
<p><div style="line-height:1.5em;color:black">
<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.z_added(float)" class="hiddenlink" target="rightframe"><b>z</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.view.ViewPropertyAnimator.html#android.view.ViewPropertyAnimator.zBy_added(float)" class="hiddenlink" target="rightframe"><b>zBy</b>
(<code>float</code>)</A></nobr><br>
<nobr><A HREF="android.webkit.WebView.html#android.webkit.WebView.zoomBy_added(float)" class="hiddenlink" target="rightframe"><b>zoomBy</b>
(<code>float</code>)</A></nobr><br>
<script src="//www.google-analytics.com/ga.js" type="text/javascript">
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-5831155-1");
pageTracker._setAllowAnchor(true);
pageTracker._initData();
pageTracker._trackPageview();
} catch(e) {}
</script>
</BODY>
</HTML>
|