aboutsummaryrefslogtreecommitdiff
path: root/docs/javadoc/com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html
blob: 0a1ba3e308311c512857d966c32a7b76c1d04dfe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!-- NewPage -->
<html lang="en">
<head>
<!-- Generated by javadoc -->
<title>SubsamplingScaleImageView (library 3.9.0 API)</title>
<link rel="stylesheet" type="text/css" href="../../../../stylesheet.css" title="Style">
<script type="text/javascript" src="../../../../script.js"></script>
</head>
<body>
<script type="text/javascript"><!--
    try {
        if (location.href.indexOf('is-external=true') == -1) {
            parent.document.title="SubsamplingScaleImageView (library 3.9.0 API)";
        }
    }
    catch(err) {
    }
//-->
var methods = {"i0":10,"i1":10,"i2":10,"i3":10,"i4":10,"i5":10,"i6":10,"i7":10,"i8":10,"i9":9,"i10":10,"i11":10,"i12":10,"i13":10,"i14":10,"i15":10,"i16":10,"i17":10,"i18":10,"i19":10,"i20":10,"i21":10,"i22":10,"i23":10,"i24":10,"i25":10,"i26":10,"i27":10,"i28":10,"i29":10,"i30":10,"i31":10,"i32":10,"i33":10,"i34":10,"i35":10,"i36":10,"i37":10,"i38":10,"i39":10,"i40":10,"i41":10,"i42":10,"i43":10,"i44":10,"i45":10,"i46":10,"i47":10,"i48":10,"i49":10,"i50":10,"i51":10,"i52":10,"i53":10,"i54":10,"i55":9,"i56":10,"i57":10,"i58":10,"i59":10,"i60":10,"i61":10,"i62":10,"i63":10,"i64":10,"i65":10,"i66":10,"i67":10,"i68":10,"i69":10,"i70":10,"i71":10};
var tabs = {65535:["t0","All Methods"],1:["t1","Static Methods"],2:["t2","Instance Methods"],8:["t4","Concrete Methods"]};
var altColor = "altColor";
var rowColor = "rowColor";
var tableTab = "tableTab";
var activeTableTab = "activeTableTab";
</script>
<noscript>
<div>JavaScript is disabled on your browser.</div>
</noscript>
<!-- ========= START OF TOP NAVBAR ======= -->
<div class="topNav"><a name="navbar.top">
<!--   -->
</a>
<div class="skipNav"><a href="#skip.navbar.top" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.top.firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html" target="_top">Frames</a></li>
<li><a href="SubsamplingScaleImageView.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_top">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_top");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.top">
<!--   -->
</a></div>
<!-- ========= END OF TOP NAVBAR ========= -->
<!-- ======== START OF CLASS DATA ======== -->
<div class="header">
<div class="subTitle">com.davemorrissey.labs.subscaleview</div>
<h2 title="Class SubsamplingScaleImageView" class="title">Class SubsamplingScaleImageView</h2>
</div>
<div class="contentContainer">
<ul class="inheritance">
<li><a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang">java.lang.Object</a></li>
<li>
<ul class="inheritance">
<li><a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">android.view.View</a></li>
<li>
<ul class="inheritance">
<li>com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView</li>
</ul>
</li>
</ul>
</li>
</ul>
<div class="description">
<ul class="blockList">
<li class="blockList">
<dl>
<dt>All Implemented Interfaces:</dt>
<dd><a href="https://developer.android.com/reference/android/graphics/drawable/Drawable.Callback.html?is-external=true" title="class or interface in android.graphics.drawable">Drawable.Callback</a>, <a href="https://developer.android.com/reference/android/view/accessibility/AccessibilityEventSource.html?is-external=true" title="class or interface in android.view.accessibility">AccessibilityEventSource</a>, <a href="https://developer.android.com/reference/android/view/KeyEvent.Callback.html?is-external=true" title="class or interface in android.view">KeyEvent.Callback</a></dd>
</dl>
<hr>
<br>
<pre>public class <span class="typeNameLabel">SubsamplingScaleImageView</span>
extends <a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></pre>
<div class="block"><p>
 Displays an image subsampled as necessary to avoid loading too much image data into memory. After zooming in,
 a set of image tiles subsampled at higher resolution are loaded and displayed over the base layer. During pan and
 zoom, tiles off screen or higher/lower resolution than required are discarded from memory.
 </p><p>
 Tiles are no larger than the max supported bitmap size, so with large images tiling may be used even when zoomed out.
 </p><p>
 v prefixes - coordinates, translations and distances measured in screen (view) pixels
 <br>
 s prefixes - coordinates, translations and distances measured in rotated and cropped source image pixels (scaled)
 <br>
 f prefixes - coordinates, translations and distances measured in original unrotated, uncropped source file pixels
 </p><p>
 <a href="https://github.com/davemorrissey/subsampling-scale-image-view">View project on GitHub</a>
 </p></div>
</li>
</ul>
</div>
<div class="summary">
<ul class="blockList">
<li class="blockList">
<!-- ======== NESTED CLASS SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="nested.class.summary">
<!--   -->
</a>
<h3>Nested Class Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Nested Class Summary table, listing nested classes, and an explanation">
<caption><span>Nested Classes</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Class and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.AnimationBuilder</a></span></code>
<div class="block">Builder class used to set additional options for a scale animation.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.DefaultOnAnimationEventListener.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.DefaultOnAnimationEventListener</a></span></code>
<div class="block">Default implementation of <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnAnimationEventListener.html" title="interface in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.OnAnimationEventListener</code></a> for extension.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.DefaultOnImageEventListener.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.DefaultOnImageEventListener</a></span></code>
<div class="block">Default implementation of <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnImageEventListener.html" title="interface in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.OnImageEventListener</code></a> for extension.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static class&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.DefaultOnStateChangedListener.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.DefaultOnStateChangedListener</a></span></code>
<div class="block">Default implementation of <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnStateChangedListener.html" title="interface in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.OnStateChangedListener</code></a>.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static interface&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnAnimationEventListener.html" title="interface in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.OnAnimationEventListener</a></span></code>
<div class="block">An event listener for animations, allows events to be triggered when an animation completes,
 is aborted by another animation starting, or is aborted by a touch event.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static interface&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnImageEventListener.html" title="interface in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.OnImageEventListener</a></span></code>
<div class="block">An event listener, allowing subclasses and activities to be notified of significant events.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static interface&nbsp;</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnStateChangedListener.html" title="interface in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.OnStateChangedListener</a></span></code>
<div class="block">An event listener, allowing activities to be notified of pan and zoom events.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="nested.classes.inherited.from.class.android.view.View">
<!--   -->
</a>
<h3>Nested classes/interfaces inherited from class&nbsp;android.view.<a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></h3>
<code><a href="https://developer.android.com/reference/android/view/View.AccessibilityDelegate.html?is-external=true" title="class or interface in android.view">View.AccessibilityDelegate</a>, <a href="https://developer.android.com/reference/android/view/View.BaseSavedState.html?is-external=true" title="class or interface in android.view">View.BaseSavedState</a>, <a href="https://developer.android.com/reference/android/view/View.DragShadowBuilder.html?is-external=true" title="class or interface in android.view">View.DragShadowBuilder</a>, <a href="https://developer.android.com/reference/android/view/View.MeasureSpec.html?is-external=true" title="class or interface in android.view">View.MeasureSpec</a>, <a href="https://developer.android.com/reference/android/view/View.OnApplyWindowInsetsListener.html?is-external=true" title="class or interface in android.view">View.OnApplyWindowInsetsListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnAttachStateChangeListener.html?is-external=true" title="class or interface in android.view">View.OnAttachStateChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnCapturedPointerListener.html?is-external=true" title="class or interface in android.view">View.OnCapturedPointerListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnClickListener.html?is-external=true" title="class or interface in android.view">View.OnClickListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnContextClickListener.html?is-external=true" title="class or interface in android.view">View.OnContextClickListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnCreateContextMenuListener.html?is-external=true" title="class or interface in android.view">View.OnCreateContextMenuListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnDragListener.html?is-external=true" title="class or interface in android.view">View.OnDragListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnFocusChangeListener.html?is-external=true" title="class or interface in android.view">View.OnFocusChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnGenericMotionListener.html?is-external=true" title="class or interface in android.view">View.OnGenericMotionListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnHoverListener.html?is-external=true" title="class or interface in android.view">View.OnHoverListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnKeyListener.html?is-external=true" title="class or interface in android.view">View.OnKeyListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnLayoutChangeListener.html?is-external=true" title="class or interface in android.view">View.OnLayoutChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnLongClickListener.html?is-external=true" title="class or interface in android.view">View.OnLongClickListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnScrollChangeListener.html?is-external=true" title="class or interface in android.view">View.OnScrollChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnSystemUiVisibilityChangeListener.html?is-external=true" title="class or interface in android.view">View.OnSystemUiVisibilityChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.OnTouchListener.html?is-external=true" title="class or interface in android.view">View.OnTouchListener</a></code></li>
</ul>
</li>
</ul>
<!-- =========== FIELD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.summary">
<!--   -->
</a>
<h3>Field Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Field Summary table, listing fields, and an explanation">
<caption><span>Fields</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Field and Description</th>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#EASE_IN_OUT_QUAD">EASE_IN_OUT_QUAD</a></span></code>
<div class="block">Quadratic ease in and out.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#EASE_OUT_QUAD">EASE_OUT_QUAD</a></span></code>
<div class="block">Quadratic ease out.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIENTATION_0">ORIENTATION_0</a></span></code>
<div class="block">Display the image file in its native orientation.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIENTATION_180">ORIENTATION_180</a></span></code>
<div class="block">Rotate the image 180 degrees.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIENTATION_270">ORIENTATION_270</a></span></code>
<div class="block">Rotate the image 270 degrees clockwise.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIENTATION_90">ORIENTATION_90</a></span></code>
<div class="block">Rotate the image 90 degrees clockwise.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIENTATION_USE_EXIF">ORIENTATION_USE_EXIF</a></span></code>
<div class="block">Attempt to use EXIF information on the image to rotate it.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIGIN_ANIM">ORIGIN_ANIM</a></span></code>
<div class="block">State change originated from animation.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIGIN_DOUBLE_TAP_ZOOM">ORIGIN_DOUBLE_TAP_ZOOM</a></span></code>
<div class="block">State change originated from a double tap zoom anim.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIGIN_FLING">ORIGIN_FLING</a></span></code>
<div class="block">State change originated from a fling momentum anim.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIGIN_TOUCH">ORIGIN_TOUCH</a></span></code>
<div class="block">State change originated from touch gesture.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#PAN_LIMIT_CENTER">PAN_LIMIT_CENTER</a></span></code>
<div class="block">Allows the image to be panned until a corner reaches the center of the screen but no further.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#PAN_LIMIT_INSIDE">PAN_LIMIT_INSIDE</a></span></code>
<div class="block">Don't allow the image to be panned off screen.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#PAN_LIMIT_OUTSIDE">PAN_LIMIT_OUTSIDE</a></span></code>
<div class="block">Allows the image to be panned until it is just off screen, but no further.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#SCALE_TYPE_CENTER_CROP">SCALE_TYPE_CENTER_CROP</a></span></code>
<div class="block">Scale the image uniformly so that both dimensions of the image will be equal to or larger than the corresponding dimension of the view.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#SCALE_TYPE_CENTER_INSIDE">SCALE_TYPE_CENTER_INSIDE</a></span></code>
<div class="block">Scale the image so that both dimensions of the image will be equal to or less than the corresponding dimension of the view.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#SCALE_TYPE_CUSTOM">SCALE_TYPE_CUSTOM</a></span></code>
<div class="block">Scale the image so that both dimensions of the image will be equal to or less than the maxScale and equal to or larger than minScale.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#SCALE_TYPE_START">SCALE_TYPE_START</a></span></code>
<div class="block">Scale the image so that both dimensions of the image will be equal to or larger than the corresponding dimension of the view.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#TILE_SIZE_AUTO">TILE_SIZE_AUTO</a></span></code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ZOOM_FOCUS_CENTER">ZOOM_FOCUS_CENTER</a></span></code>
<div class="block">During zoom animation, move the point of the image that was tapped to the center of the screen.</div>
</td>
</tr>
<tr class="altColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ZOOM_FOCUS_CENTER_IMMEDIATE">ZOOM_FOCUS_CENTER_IMMEDIATE</a></span></code>
<div class="block">Zoom in to and center the tapped point immediately without animating.</div>
</td>
</tr>
<tr class="rowColor">
<td class="colFirst"><code>static int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ZOOM_FOCUS_FIXED">ZOOM_FOCUS_FIXED</a></span></code>
<div class="block">During zoom animation, keep the point of the image that was tapped in the same place, and scale the image around it.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="fields.inherited.from.class.android.view.View">
<!--   -->
</a>
<h3>Fields inherited from class&nbsp;android.view.<a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></h3>
<code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ACCESSIBILITY_LIVE_REGION_ASSERTIVE" title="class or interface in android.view">ACCESSIBILITY_LIVE_REGION_ASSERTIVE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ACCESSIBILITY_LIVE_REGION_NONE" title="class or interface in android.view">ACCESSIBILITY_LIVE_REGION_NONE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ACCESSIBILITY_LIVE_REGION_POLITE" title="class or interface in android.view">ACCESSIBILITY_LIVE_REGION_POLITE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ALPHA" title="class or interface in android.view">ALPHA</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS" title="class or interface in android.view">AUTOFILL_FLAG_INCLUDE_NOT_IMPORTANT_VIEWS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE" title="class or interface in android.view">AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DATE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY" title="class or interface in android.view">AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_DAY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH" title="class or interface in android.view">AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_MONTH</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR" title="class or interface in android.view">AUTOFILL_HINT_CREDIT_CARD_EXPIRATION_YEAR</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_CREDIT_CARD_NUMBER" title="class or interface in android.view">AUTOFILL_HINT_CREDIT_CARD_NUMBER</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE" title="class or interface in android.view">AUTOFILL_HINT_CREDIT_CARD_SECURITY_CODE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_EMAIL_ADDRESS" title="class or interface in android.view">AUTOFILL_HINT_EMAIL_ADDRESS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_NAME" title="class or interface in android.view">AUTOFILL_HINT_NAME</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_PASSWORD" title="class or interface in android.view">AUTOFILL_HINT_PASSWORD</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_PHONE" title="class or interface in android.view">AUTOFILL_HINT_PHONE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_POSTAL_ADDRESS" title="class or interface in android.view">AUTOFILL_HINT_POSTAL_ADDRESS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_POSTAL_CODE" title="class or interface in android.view">AUTOFILL_HINT_POSTAL_CODE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_HINT_USERNAME" title="class or interface in android.view">AUTOFILL_HINT_USERNAME</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_TYPE_DATE" title="class or interface in android.view">AUTOFILL_TYPE_DATE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_TYPE_LIST" title="class or interface in android.view">AUTOFILL_TYPE_LIST</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_TYPE_NONE" title="class or interface in android.view">AUTOFILL_TYPE_NONE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_TYPE_TEXT" title="class or interface in android.view">AUTOFILL_TYPE_TEXT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#AUTOFILL_TYPE_TOGGLE" title="class or interface in android.view">AUTOFILL_TYPE_TOGGLE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAG_FLAG_GLOBAL" title="class or interface in android.view">DRAG_FLAG_GLOBAL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION" title="class or interface in android.view">DRAG_FLAG_GLOBAL_PERSISTABLE_URI_PERMISSION</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION" title="class or interface in android.view">DRAG_FLAG_GLOBAL_PREFIX_URI_PERMISSION</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAG_FLAG_GLOBAL_URI_READ" title="class or interface in android.view">DRAG_FLAG_GLOBAL_URI_READ</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAG_FLAG_GLOBAL_URI_WRITE" title="class or interface in android.view">DRAG_FLAG_GLOBAL_URI_WRITE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAG_FLAG_OPAQUE" title="class or interface in android.view">DRAG_FLAG_OPAQUE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAWING_CACHE_QUALITY_AUTO" title="class or interface in android.view">DRAWING_CACHE_QUALITY_AUTO</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAWING_CACHE_QUALITY_HIGH" title="class or interface in android.view">DRAWING_CACHE_QUALITY_HIGH</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#DRAWING_CACHE_QUALITY_LOW" title="class or interface in android.view">DRAWING_CACHE_QUALITY_LOW</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#EMPTY_STATE_SET" title="class or interface in android.view">EMPTY_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ENABLED_FOCUSED_SELECTED_STATE_SET" title="class or interface in android.view">ENABLED_FOCUSED_SELECTED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ENABLED_FOCUSED_STATE_SET" title="class or interface in android.view">ENABLED_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ENABLED_SELECTED_STATE_SET" title="class or interface in android.view">ENABLED_SELECTED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ENABLED_STATE_SET" title="class or interface in android.view">ENABLED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ENABLED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">ENABLED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FIND_VIEWS_WITH_CONTENT_DESCRIPTION" title="class or interface in android.view">FIND_VIEWS_WITH_CONTENT_DESCRIPTION</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FIND_VIEWS_WITH_TEXT" title="class or interface in android.view">FIND_VIEWS_WITH_TEXT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUS_BACKWARD" title="class or interface in android.view">FOCUS_BACKWARD</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUS_DOWN" title="class or interface in android.view">FOCUS_DOWN</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUS_FORWARD" title="class or interface in android.view">FOCUS_FORWARD</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUS_LEFT" title="class or interface in android.view">FOCUS_LEFT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUS_RIGHT" title="class or interface in android.view">FOCUS_RIGHT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUS_UP" title="class or interface in android.view">FOCUS_UP</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUSABLE" title="class or interface in android.view">FOCUSABLE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUSABLE_AUTO" title="class or interface in android.view">FOCUSABLE_AUTO</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUSABLES_ALL" title="class or interface in android.view">FOCUSABLES_ALL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUSABLES_TOUCH_MODE" title="class or interface in android.view">FOCUSABLES_TOUCH_MODE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUSED_SELECTED_STATE_SET" title="class or interface in android.view">FOCUSED_SELECTED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUSED_STATE_SET" title="class or interface in android.view">FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#FOCUSED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">FOCUSED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#GONE" title="class or interface in android.view">GONE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#HAPTIC_FEEDBACK_ENABLED" title="class or interface in android.view">HAPTIC_FEEDBACK_ENABLED</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_ACCESSIBILITY_AUTO" title="class or interface in android.view">IMPORTANT_FOR_ACCESSIBILITY_AUTO</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_ACCESSIBILITY_NO" title="class or interface in android.view">IMPORTANT_FOR_ACCESSIBILITY_NO</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS" title="class or interface in android.view">IMPORTANT_FOR_ACCESSIBILITY_NO_HIDE_DESCENDANTS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_ACCESSIBILITY_YES" title="class or interface in android.view">IMPORTANT_FOR_ACCESSIBILITY_YES</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_AUTOFILL_AUTO" title="class or interface in android.view">IMPORTANT_FOR_AUTOFILL_AUTO</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_AUTOFILL_NO" title="class or interface in android.view">IMPORTANT_FOR_AUTOFILL_NO</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS" title="class or interface in android.view">IMPORTANT_FOR_AUTOFILL_NO_EXCLUDE_DESCENDANTS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_AUTOFILL_YES" title="class or interface in android.view">IMPORTANT_FOR_AUTOFILL_YES</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS" title="class or interface in android.view">IMPORTANT_FOR_AUTOFILL_YES_EXCLUDE_DESCENDANTS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#INVISIBLE" title="class or interface in android.view">INVISIBLE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#KEEP_SCREEN_ON" title="class or interface in android.view">KEEP_SCREEN_ON</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#LAYER_TYPE_HARDWARE" title="class or interface in android.view">LAYER_TYPE_HARDWARE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#LAYER_TYPE_NONE" title="class or interface in android.view">LAYER_TYPE_NONE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#LAYER_TYPE_SOFTWARE" title="class or interface in android.view">LAYER_TYPE_SOFTWARE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#LAYOUT_DIRECTION_INHERIT" title="class or interface in android.view">LAYOUT_DIRECTION_INHERIT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#LAYOUT_DIRECTION_LOCALE" title="class or interface in android.view">LAYOUT_DIRECTION_LOCALE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#LAYOUT_DIRECTION_LTR" title="class or interface in android.view">LAYOUT_DIRECTION_LTR</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#LAYOUT_DIRECTION_RTL" title="class or interface in android.view">LAYOUT_DIRECTION_RTL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#MEASURED_HEIGHT_STATE_SHIFT" title="class or interface in android.view">MEASURED_HEIGHT_STATE_SHIFT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#MEASURED_SIZE_MASK" title="class or interface in android.view">MEASURED_SIZE_MASK</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#MEASURED_STATE_MASK" title="class or interface in android.view">MEASURED_STATE_MASK</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#MEASURED_STATE_TOO_SMALL" title="class or interface in android.view">MEASURED_STATE_TOO_SMALL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#NO_ID" title="class or interface in android.view">NO_ID</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#NOT_FOCUSABLE" title="class or interface in android.view">NOT_FOCUSABLE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#OVER_SCROLL_ALWAYS" title="class or interface in android.view">OVER_SCROLL_ALWAYS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#OVER_SCROLL_IF_CONTENT_SCROLLS" title="class or interface in android.view">OVER_SCROLL_IF_CONTENT_SCROLLS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#OVER_SCROLL_NEVER" title="class or interface in android.view">OVER_SCROLL_NEVER</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET" title="class or interface in android.view">PRESSED_ENABLED_FOCUSED_SELECTED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_ENABLED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_ENABLED_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_ENABLED_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_ENABLED_FOCUSED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_ENABLED_SELECTED_STATE_SET" title="class or interface in android.view">PRESSED_ENABLED_SELECTED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_ENABLED_SELECTED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_ENABLED_STATE_SET" title="class or interface in android.view">PRESSED_ENABLED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_ENABLED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_FOCUSED_SELECTED_STATE_SET" title="class or interface in android.view">PRESSED_FOCUSED_SELECTED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_FOCUSED_SELECTED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_FOCUSED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_SELECTED_STATE_SET" title="class or interface in android.view">PRESSED_SELECTED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_SELECTED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_STATE_SET" title="class or interface in android.view">PRESSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#PRESSED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">PRESSED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ROTATION" title="class or interface in android.view">ROTATION</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ROTATION_X" title="class or interface in android.view">ROTATION_X</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#ROTATION_Y" title="class or interface in android.view">ROTATION_Y</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCALE_X" title="class or interface in android.view">SCALE_X</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCALE_Y" title="class or interface in android.view">SCALE_Y</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCREEN_STATE_OFF" title="class or interface in android.view">SCREEN_STATE_OFF</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCREEN_STATE_ON" title="class or interface in android.view">SCREEN_STATE_ON</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_AXIS_HORIZONTAL" title="class or interface in android.view">SCROLL_AXIS_HORIZONTAL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_AXIS_NONE" title="class or interface in android.view">SCROLL_AXIS_NONE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_AXIS_VERTICAL" title="class or interface in android.view">SCROLL_AXIS_VERTICAL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_INDICATOR_BOTTOM" title="class or interface in android.view">SCROLL_INDICATOR_BOTTOM</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_INDICATOR_END" title="class or interface in android.view">SCROLL_INDICATOR_END</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_INDICATOR_LEFT" title="class or interface in android.view">SCROLL_INDICATOR_LEFT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_INDICATOR_RIGHT" title="class or interface in android.view">SCROLL_INDICATOR_RIGHT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_INDICATOR_START" title="class or interface in android.view">SCROLL_INDICATOR_START</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLL_INDICATOR_TOP" title="class or interface in android.view">SCROLL_INDICATOR_TOP</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLLBAR_POSITION_DEFAULT" title="class or interface in android.view">SCROLLBAR_POSITION_DEFAULT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLLBAR_POSITION_LEFT" title="class or interface in android.view">SCROLLBAR_POSITION_LEFT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLLBAR_POSITION_RIGHT" title="class or interface in android.view">SCROLLBAR_POSITION_RIGHT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLLBARS_INSIDE_INSET" title="class or interface in android.view">SCROLLBARS_INSIDE_INSET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLLBARS_INSIDE_OVERLAY" title="class or interface in android.view">SCROLLBARS_INSIDE_OVERLAY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLLBARS_OUTSIDE_INSET" title="class or interface in android.view">SCROLLBARS_OUTSIDE_INSET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SCROLLBARS_OUTSIDE_OVERLAY" title="class or interface in android.view">SCROLLBARS_OUTSIDE_OVERLAY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SELECTED_STATE_SET" title="class or interface in android.view">SELECTED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SELECTED_WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">SELECTED_WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SOUND_EFFECTS_ENABLED" title="class or interface in android.view">SOUND_EFFECTS_ENABLED</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#STATUS_BAR_HIDDEN" title="class or interface in android.view">STATUS_BAR_HIDDEN</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#STATUS_BAR_VISIBLE" title="class or interface in android.view">STATUS_BAR_VISIBLE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_FULLSCREEN" title="class or interface in android.view">SYSTEM_UI_FLAG_FULLSCREEN</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_HIDE_NAVIGATION" title="class or interface in android.view">SYSTEM_UI_FLAG_HIDE_NAVIGATION</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_IMMERSIVE" title="class or interface in android.view">SYSTEM_UI_FLAG_IMMERSIVE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_IMMERSIVE_STICKY" title="class or interface in android.view">SYSTEM_UI_FLAG_IMMERSIVE_STICKY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN" title="class or interface in android.view">SYSTEM_UI_FLAG_LAYOUT_FULLSCREEN</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION" title="class or interface in android.view">SYSTEM_UI_FLAG_LAYOUT_HIDE_NAVIGATION</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_LAYOUT_STABLE" title="class or interface in android.view">SYSTEM_UI_FLAG_LAYOUT_STABLE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR" title="class or interface in android.view">SYSTEM_UI_FLAG_LIGHT_NAVIGATION_BAR</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_LIGHT_STATUS_BAR" title="class or interface in android.view">SYSTEM_UI_FLAG_LIGHT_STATUS_BAR</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_LOW_PROFILE" title="class or interface in android.view">SYSTEM_UI_FLAG_LOW_PROFILE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_FLAG_VISIBLE" title="class or interface in android.view">SYSTEM_UI_FLAG_VISIBLE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#SYSTEM_UI_LAYOUT_FLAGS" title="class or interface in android.view">SYSTEM_UI_LAYOUT_FLAGS</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_ALIGNMENT_CENTER" title="class or interface in android.view">TEXT_ALIGNMENT_CENTER</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_ALIGNMENT_GRAVITY" title="class or interface in android.view">TEXT_ALIGNMENT_GRAVITY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_ALIGNMENT_INHERIT" title="class or interface in android.view">TEXT_ALIGNMENT_INHERIT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_ALIGNMENT_TEXT_END" title="class or interface in android.view">TEXT_ALIGNMENT_TEXT_END</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_ALIGNMENT_TEXT_START" title="class or interface in android.view">TEXT_ALIGNMENT_TEXT_START</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_ALIGNMENT_VIEW_END" title="class or interface in android.view">TEXT_ALIGNMENT_VIEW_END</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_ALIGNMENT_VIEW_START" title="class or interface in android.view">TEXT_ALIGNMENT_VIEW_START</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_DIRECTION_ANY_RTL" title="class or interface in android.view">TEXT_DIRECTION_ANY_RTL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_DIRECTION_FIRST_STRONG" title="class or interface in android.view">TEXT_DIRECTION_FIRST_STRONG</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_DIRECTION_FIRST_STRONG_LTR" title="class or interface in android.view">TEXT_DIRECTION_FIRST_STRONG_LTR</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_DIRECTION_FIRST_STRONG_RTL" title="class or interface in android.view">TEXT_DIRECTION_FIRST_STRONG_RTL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_DIRECTION_INHERIT" title="class or interface in android.view">TEXT_DIRECTION_INHERIT</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_DIRECTION_LOCALE" title="class or interface in android.view">TEXT_DIRECTION_LOCALE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_DIRECTION_LTR" title="class or interface in android.view">TEXT_DIRECTION_LTR</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TEXT_DIRECTION_RTL" title="class or interface in android.view">TEXT_DIRECTION_RTL</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TRANSLATION_X" title="class or interface in android.view">TRANSLATION_X</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TRANSLATION_Y" title="class or interface in android.view">TRANSLATION_Y</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#TRANSLATION_Z" title="class or interface in android.view">TRANSLATION_Z</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#VIEW_LOG_TAG" title="class or interface in android.view">VIEW_LOG_TAG</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#VISIBLE" title="class or interface in android.view">VISIBLE</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#WINDOW_FOCUSED_STATE_SET" title="class or interface in android.view">WINDOW_FOCUSED_STATE_SET</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#X" title="class or interface in android.view">X</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#Y" title="class or interface in android.view">Y</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#Z" title="class or interface in android.view">Z</a></code></li>
</ul>
</li>
</ul>
<!-- ======== CONSTRUCTOR SUMMARY ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.summary">
<!--   -->
</a>
<h3>Constructor Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Constructor Summary table, listing constructors, and an explanation">
<caption><span>Constructors</span><span class="tabEnd">&nbsp;</span></caption>
<tr>
<th class="colOne" scope="col">Constructor and Description</th>
</tr>
<tr class="altColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#SubsamplingScaleImageView-android.content.Context-">SubsamplingScaleImageView</a></span>(<a href="https://developer.android.com/reference/android/content/Context.html?is-external=true" title="class or interface in android.content">Context</a>&nbsp;context)</code>&nbsp;</td>
</tr>
<tr class="rowColor">
<td class="colOne"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#SubsamplingScaleImageView-android.content.Context-android.util.AttributeSet-">SubsamplingScaleImageView</a></span>(<a href="https://developer.android.com/reference/android/content/Context.html?is-external=true" title="class or interface in android.content">Context</a>&nbsp;context,
                         <a href="https://developer.android.com/reference/android/util/AttributeSet.html?is-external=true" title="class or interface in android.util">AttributeSet</a>&nbsp;attr)</code>&nbsp;</td>
</tr>
</table>
</li>
</ul>
<!-- ========== METHOD SUMMARY =========== -->
<ul class="blockList">
<li class="blockList"><a name="method.summary">
<!--   -->
</a>
<h3>Method Summary</h3>
<table class="memberSummary" border="0" cellpadding="3" cellspacing="0" summary="Method Summary table, listing methods, and an explanation">
<caption><span id="t0" class="activeTableTab"><span>All Methods</span><span class="tabEnd">&nbsp;</span></span><span id="t1" class="tableTab"><span><a href="javascript:show(1);">Static Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t2" class="tableTab"><span><a href="javascript:show(2);">Instance Methods</a></span><span class="tabEnd">&nbsp;</span></span><span id="t4" class="tableTab"><span><a href="javascript:show(8);">Concrete Methods</a></span><span class="tabEnd">&nbsp;</span></span></caption>
<tr>
<th class="colFirst" scope="col">Modifier and Type</th>
<th class="colLast" scope="col">Method and Description</th>
</tr>
<tr id="i0" class="altColor">
<td class="colFirst"><code><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.AnimationBuilder</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#animateCenter-android.graphics.PointF-">animateCenter</a></span>(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sCenter)</code>
<div class="block">Creates a panning animation builder, that when started will animate the image to place the given coordinates of
 the image in the center of the screen.</div>
</td>
</tr>
<tr id="i1" class="rowColor">
<td class="colFirst"><code><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.AnimationBuilder</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#animateScale-float-">animateScale</a></span>(float&nbsp;scale)</code>
<div class="block">Creates a scale animation builder, that when started will animate a zoom in or out.</div>
</td>
</tr>
<tr id="i2" class="altColor">
<td class="colFirst"><code><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.AnimationBuilder</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#animateScaleAndCenter-float-android.graphics.PointF-">animateScaleAndCenter</a></span>(float&nbsp;scale,
                     <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sCenter)</code>
<div class="block">Creates a scale animation builder, that when started will animate a zoom in or out.</div>
</td>
</tr>
<tr id="i3" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getAppliedOrientation--">getAppliedOrientation</a></span>()</code>
<div class="block">Returns the actual orientation of the image relative to the source file.</div>
</td>
</tr>
<tr id="i4" class="altColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getCenter--">getCenter</a></span>()</code>
<div class="block">Returns the source point at the center of the view.</div>
</td>
</tr>
<tr id="i5" class="rowColor">
<td class="colFirst"><code>float</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getMaxScale--">getMaxScale</a></span>()</code>
<div class="block">Returns the maximum allowed scale.</div>
</td>
</tr>
<tr id="i6" class="altColor">
<td class="colFirst"><code>float</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getMinScale--">getMinScale</a></span>()</code>
<div class="block">Returns the minimum allowed scale.</div>
</td>
</tr>
<tr id="i7" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getOrientation--">getOrientation</a></span>()</code>
<div class="block">Returns the orientation setting.</div>
</td>
</tr>
<tr id="i8" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getPanRemaining-android.graphics.RectF-">getPanRemaining</a></span>(<a href="https://developer.android.com/reference/android/graphics/RectF.html?is-external=true" title="class or interface in android.graphics">RectF</a>&nbsp;vTarget)</code>
<div class="block">Calculate how much further the image can be panned in each direction.</div>
</td>
</tr>
<tr id="i9" class="rowColor">
<td class="colFirst"><code>static <a href="https://developer.android.com/reference/android/graphics/Bitmap.Config.html?is-external=true" title="class or interface in android.graphics">Bitmap.Config</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getPreferredBitmapConfig--">getPreferredBitmapConfig</a></span>()</code>
<div class="block">Get the current preferred configuration for decoding bitmaps.</div>
</td>
</tr>
<tr id="i10" class="altColor">
<td class="colFirst"><code>float</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getScale--">getScale</a></span>()</code>
<div class="block">Returns the current scale value.</div>
</td>
</tr>
<tr id="i11" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getSHeight--">getSHeight</a></span>()</code>
<div class="block">Get source height, ignoring orientation.</div>
</td>
</tr>
<tr id="i12" class="altColor">
<td class="colFirst"><code><a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview">ImageViewState</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getState--">getState</a></span>()</code>
<div class="block">Get the current state of the view (scale, center, orientation) for restoration after rotate.</div>
</td>
</tr>
<tr id="i13" class="rowColor">
<td class="colFirst"><code>int</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getSWidth--">getSWidth</a></span>()</code>
<div class="block">Get source width, ignoring orientation.</div>
</td>
</tr>
<tr id="i14" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#hasImage--">hasImage</a></span>()</code>
<div class="block">Check if an image has been set.</div>
</td>
</tr>
<tr id="i15" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#isImageLoaded--">isImageLoaded</a></span>()</code>
<div class="block">Call to find whether the main image (base layer tiles where relevant) have been loaded.</div>
</td>
</tr>
<tr id="i16" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#isPanEnabled--">isPanEnabled</a></span>()</code>
<div class="block">Returns true if pan gesture detection is enabled.</div>
</td>
</tr>
<tr id="i17" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#isQuickScaleEnabled--">isQuickScaleEnabled</a></span>()</code>
<div class="block">Returns true if double tap &amp; swipe to zoom is enabled.</div>
</td>
</tr>
<tr id="i18" class="altColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#isReady--">isReady</a></span>()</code>
<div class="block">Call to find whether the view is initialised, has dimensions, and will display an image on
 the next draw.</div>
</td>
</tr>
<tr id="i19" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#isZoomEnabled--">isZoomEnabled</a></span>()</code>
<div class="block">Returns true if zoom gesture detection is enabled.</div>
</td>
</tr>
<tr id="i20" class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#onDraw-android.graphics.Canvas-">onDraw</a></span>(<a href="https://developer.android.com/reference/android/graphics/Canvas.html?is-external=true" title="class or interface in android.graphics">Canvas</a>&nbsp;canvas)</code>
<div class="block">Draw method should not be called until the view has dimensions so the first calls are used as triggers to calculate
 the scaling and tiling required.</div>
</td>
</tr>
<tr id="i21" class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#onImageLoaded--">onImageLoaded</a></span>()</code>
<div class="block">Called once when the full size image or its base layer tiles have been loaded.</div>
</td>
</tr>
<tr id="i22" class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#onMeasure-int-int-">onMeasure</a></span>(int&nbsp;widthMeasureSpec,
         int&nbsp;heightMeasureSpec)</code>
<div class="block">Measures the width and height of the view, preserving the aspect ratio of the image displayed if wrap_content is
 used.</div>
</td>
</tr>
<tr id="i23" class="rowColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#onReady--">onReady</a></span>()</code>
<div class="block">Called once when the view is initialised, has dimensions, and will display an image on the
 next draw.</div>
</td>
</tr>
<tr id="i24" class="altColor">
<td class="colFirst"><code>protected void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#onSizeChanged-int-int-int-int-">onSizeChanged</a></span>(int&nbsp;w,
             int&nbsp;h,
             int&nbsp;oldw,
             int&nbsp;oldh)</code>
<div class="block">On resize, preserve center and scale.</div>
</td>
</tr>
<tr id="i25" class="rowColor">
<td class="colFirst"><code>boolean</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#onTouchEvent-android.view.MotionEvent-">onTouchEvent</a></span>(<a href="https://developer.android.com/reference/android/view/MotionEvent.html?is-external=true" title="class or interface in android.view">MotionEvent</a>&nbsp;event)</code>
<div class="block">Handle touch events.</div>
</td>
</tr>
<tr id="i26" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#recycle--">recycle</a></span>()</code>
<div class="block">Releases all resources the view is using and resets the state, nulling any fields that use significant memory.</div>
</td>
</tr>
<tr id="i27" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#resetScaleAndCenter--">resetScaleAndCenter</a></span>()</code>
<div class="block">Fully zoom out and return the image to the middle of the screen.</div>
</td>
</tr>
<tr id="i28" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setBitmapDecoderClass-java.lang.Class-">setBitmapDecoderClass</a></span>(<a href="https://developer.android.com/reference/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;? extends <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">ImageDecoder</a>&gt;&nbsp;bitmapDecoderClass)</code>
<div class="block">Swap the default bitmap decoder implementation for one of your own.</div>
</td>
</tr>
<tr id="i29" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setBitmapDecoderFactory-com.davemorrissey.labs.subscaleview.decoder.DecoderFactory-">setBitmapDecoderFactory</a></span>(<a href="../../../../com/davemorrissey/labs/subscaleview/decoder/DecoderFactory.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">DecoderFactory</a>&lt;? extends <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">ImageDecoder</a>&gt;&nbsp;bitmapDecoderFactory)</code>
<div class="block">Swap the default bitmap decoder implementation for one of your own.</div>
</td>
</tr>
<tr id="i30" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setDebug-boolean-">setDebug</a></span>(boolean&nbsp;debug)</code>
<div class="block">Enables visual debugging, showing tile boundaries and sizes.</div>
</td>
</tr>
<tr id="i31" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setDoubleTapZoomDpi-int-">setDoubleTapZoomDpi</a></span>(int&nbsp;dpi)</code>
<div class="block">A density aware alternative to <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setDoubleTapZoomScale-float-"><code>setDoubleTapZoomScale(float)</code></a>; this allows you to express the scale the
 image will zoom in to when double tapped in terms of the image pixel density.</div>
</td>
</tr>
<tr id="i32" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setDoubleTapZoomDuration-int-">setDoubleTapZoomDuration</a></span>(int&nbsp;durationMs)</code>
<div class="block">Set the duration of the double tap zoom animation.</div>
</td>
</tr>
<tr id="i33" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setDoubleTapZoomScale-float-">setDoubleTapZoomScale</a></span>(float&nbsp;doubleTapZoomScale)</code>
<div class="block">Set the scale the image will zoom in to when double tapped.</div>
</td>
</tr>
<tr id="i34" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setDoubleTapZoomStyle-int-">setDoubleTapZoomStyle</a></span>(int&nbsp;doubleTapZoomStyle)</code>
<div class="block">Set the type of zoom animation to be used for double taps.</div>
</td>
</tr>
<tr id="i35" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setEagerLoadingEnabled-boolean-">setEagerLoadingEnabled</a></span>(boolean&nbsp;eagerLoadingEnabled)</code>
<div class="block">Enable or disable eager loading of tiles that appear on screen during gestures or animations,
 while the gesture or animation is still in progress.</div>
</td>
</tr>
<tr id="i36" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setExecutor-java.util.concurrent.Executor-">setExecutor</a></span>(<a href="https://developer.android.com/reference/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent">Executor</a>&nbsp;executor)</code>
<div class="block">
 Provide an <a href="https://developer.android.com/reference/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent"><code>Executor</code></a> to be used for loading images.</div>
</td>
</tr>
<tr id="i37" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setImage-com.davemorrissey.labs.subscaleview.ImageSource-">setImage</a></span>(<a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;imageSource)</code>
<div class="block">Set the image source from a bitmap, resource, asset, file or other URI.</div>
</td>
</tr>
<tr id="i38" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setImage-com.davemorrissey.labs.subscaleview.ImageSource-com.davemorrissey.labs.subscaleview.ImageSource-">setImage</a></span>(<a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;imageSource,
        <a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;previewSource)</code>
<div class="block">Set the image source from a bitmap, resource, asset, file or other URI, providing a preview image to be
 displayed until the full size image is loaded.</div>
</td>
</tr>
<tr id="i39" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setImage-com.davemorrissey.labs.subscaleview.ImageSource-com.davemorrissey.labs.subscaleview.ImageSource-com.davemorrissey.labs.subscaleview.ImageViewState-">setImage</a></span>(<a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;imageSource,
        <a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;previewSource,
        <a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview">ImageViewState</a>&nbsp;state)</code>
<div class="block">Set the image source from a bitmap, resource, asset, file or other URI, providing a preview image to be
 displayed until the full size image is loaded, starting with a given orientation setting, scale and center.</div>
</td>
</tr>
<tr id="i40" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setImage-com.davemorrissey.labs.subscaleview.ImageSource-com.davemorrissey.labs.subscaleview.ImageViewState-">setImage</a></span>(<a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;imageSource,
        <a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview">ImageViewState</a>&nbsp;state)</code>
<div class="block">Set the image source from a bitmap, resource, asset, file or other URI, starting with a given orientation
 setting, scale and center.</div>
</td>
</tr>
<tr id="i41" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMaximumDpi-int-">setMaximumDpi</a></span>(int&nbsp;dpi)</code>
<div class="block">This is a screen density aware alternative to <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMinScale-float-"><code>setMinScale(float)</code></a>; it allows you to express the minimum
 allowed scale in terms of the maximum pixel density.</div>
</td>
</tr>
<tr id="i42" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMaxScale-float-">setMaxScale</a></span>(float&nbsp;maxScale)</code>
<div class="block">Set the maximum scale allowed.</div>
</td>
</tr>
<tr id="i43" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMaxTileSize-int-">setMaxTileSize</a></span>(int&nbsp;maxPixels)</code>
<div class="block">By default the View automatically calculates the optimal tile size.</div>
</td>
</tr>
<tr id="i44" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMaxTileSize-int-int-">setMaxTileSize</a></span>(int&nbsp;maxPixelsX,
              int&nbsp;maxPixelsY)</code>
<div class="block">By default the View automatically calculates the optimal tile size.</div>
</td>
</tr>
<tr id="i45" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMinimumDpi-int-">setMinimumDpi</a></span>(int&nbsp;dpi)</code>
<div class="block">This is a screen density aware alternative to <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMaxScale-float-"><code>setMaxScale(float)</code></a>; it allows you to express the maximum
 allowed scale in terms of the minimum pixel density.</div>
</td>
</tr>
<tr id="i46" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMinimumScaleType-int-">setMinimumScaleType</a></span>(int&nbsp;scaleType)</code>
<div class="block">Set the minimum scale type.</div>
</td>
</tr>
<tr id="i47" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMinimumTileDpi-int-">setMinimumTileDpi</a></span>(int&nbsp;minimumTileDpi)</code>
<div class="block">By default, image tiles are at least as high resolution as the screen.</div>
</td>
</tr>
<tr id="i48" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMinScale-float-">setMinScale</a></span>(float&nbsp;minScale)</code>
<div class="block">Set the minimum scale allowed.</div>
</td>
</tr>
<tr id="i49" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setOnImageEventListener-com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.OnImageEventListener-">setOnImageEventListener</a></span>(<a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnImageEventListener.html" title="interface in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.OnImageEventListener</a>&nbsp;onImageEventListener)</code>
<div class="block">Add a listener allowing notification of load and error events.</div>
</td>
</tr>
<tr id="i50" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setOnLongClickListener-android.view.View.OnLongClickListener-">setOnLongClickListener</a></span>(<a href="https://developer.android.com/reference/android/view/View.OnLongClickListener.html?is-external=true" title="class or interface in android.view">View.OnLongClickListener</a>&nbsp;onLongClickListener)</code></td>
</tr>
<tr id="i51" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setOnStateChangedListener-com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.OnStateChangedListener-">setOnStateChangedListener</a></span>(<a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnStateChangedListener.html" title="interface in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.OnStateChangedListener</a>&nbsp;onStateChangedListener)</code>
<div class="block">Add a listener for pan and zoom events.</div>
</td>
</tr>
<tr id="i52" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setOrientation-int-">setOrientation</a></span>(int&nbsp;orientation)</code>
<div class="block">Sets the image orientation.</div>
</td>
</tr>
<tr id="i53" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setPanEnabled-boolean-">setPanEnabled</a></span>(boolean&nbsp;panEnabled)</code>
<div class="block">Enable or disable pan gesture detection.</div>
</td>
</tr>
<tr id="i54" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setPanLimit-int-">setPanLimit</a></span>(int&nbsp;panLimit)</code>
<div class="block">Set the pan limiting style.</div>
</td>
</tr>
<tr id="i55" class="rowColor">
<td class="colFirst"><code>static void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setPreferredBitmapConfig-android.graphics.Bitmap.Config-">setPreferredBitmapConfig</a></span>(<a href="https://developer.android.com/reference/android/graphics/Bitmap.Config.html?is-external=true" title="class or interface in android.graphics">Bitmap.Config</a>&nbsp;preferredBitmapConfig)</code>
<div class="block">Set a global preferred bitmap config shared by all view instances and applied to new instances
 initialised after the call is made.</div>
</td>
</tr>
<tr id="i56" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setQuickScaleEnabled-boolean-">setQuickScaleEnabled</a></span>(boolean&nbsp;quickScaleEnabled)</code>
<div class="block">Enable or disable double tap &amp; swipe to zoom.</div>
</td>
</tr>
<tr id="i57" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setRegionDecoderClass-java.lang.Class-">setRegionDecoderClass</a></span>(<a href="https://developer.android.com/reference/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;? extends <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">ImageRegionDecoder</a>&gt;&nbsp;regionDecoderClass)</code>
<div class="block">Swap the default region decoder implementation for one of your own.</div>
</td>
</tr>
<tr id="i58" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setRegionDecoderFactory-com.davemorrissey.labs.subscaleview.decoder.DecoderFactory-">setRegionDecoderFactory</a></span>(<a href="../../../../com/davemorrissey/labs/subscaleview/decoder/DecoderFactory.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">DecoderFactory</a>&lt;? extends <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">ImageRegionDecoder</a>&gt;&nbsp;regionDecoderFactory)</code>
<div class="block">Swap the default region decoder implementation for one of your own.</div>
</td>
</tr>
<tr id="i59" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setScaleAndCenter-float-android.graphics.PointF-">setScaleAndCenter</a></span>(float&nbsp;scale,
                 <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sCenter)</code>
<div class="block">Externally change the scale and translation of the source image.</div>
</td>
</tr>
<tr id="i60" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setTileBackgroundColor-int-">setTileBackgroundColor</a></span>(int&nbsp;tileBgColor)</code>
<div class="block">Set a solid color to render behind tiles, useful for displaying transparent PNGs.</div>
</td>
</tr>
<tr id="i61" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setZoomEnabled-boolean-">setZoomEnabled</a></span>(boolean&nbsp;zoomEnabled)</code>
<div class="block">Enable or disable zoom gesture detection.</div>
</td>
</tr>
<tr id="i62" class="altColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#sourceToViewCoord-float-float-">sourceToViewCoord</a></span>(float&nbsp;sx,
                 float&nbsp;sy)</code>
<div class="block">Convert source coordinate to view coordinate.</div>
</td>
</tr>
<tr id="i63" class="rowColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#sourceToViewCoord-float-float-android.graphics.PointF-">sourceToViewCoord</a></span>(float&nbsp;sx,
                 float&nbsp;sy,
                 <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;vTarget)</code>
<div class="block">Convert source coordinate to view coordinate.</div>
</td>
</tr>
<tr id="i64" class="altColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#sourceToViewCoord-android.graphics.PointF-">sourceToViewCoord</a></span>(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sxy)</code>
<div class="block">Convert source coordinate to view coordinate.</div>
</td>
</tr>
<tr id="i65" class="rowColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#sourceToViewCoord-android.graphics.PointF-android.graphics.PointF-">sourceToViewCoord</a></span>(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sxy,
                 <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;vTarget)</code>
<div class="block">Convert source coordinate to view coordinate.</div>
</td>
</tr>
<tr id="i66" class="altColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#viewToFileRect-android.graphics.Rect-android.graphics.Rect-">viewToFileRect</a></span>(<a href="https://developer.android.com/reference/android/graphics/Rect.html?is-external=true" title="class or interface in android.graphics">Rect</a>&nbsp;vRect,
              <a href="https://developer.android.com/reference/android/graphics/Rect.html?is-external=true" title="class or interface in android.graphics">Rect</a>&nbsp;fRect)</code>
<div class="block">Converts a rectangle within the view to the corresponding rectangle from the source file, taking
 into account the current scale, translation, orientation and clipped region.</div>
</td>
</tr>
<tr id="i67" class="rowColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#viewToSourceCoord-float-float-">viewToSourceCoord</a></span>(float&nbsp;vx,
                 float&nbsp;vy)</code>
<div class="block">Convert screen coordinate to source coordinate.</div>
</td>
</tr>
<tr id="i68" class="altColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#viewToSourceCoord-float-float-android.graphics.PointF-">viewToSourceCoord</a></span>(float&nbsp;vx,
                 float&nbsp;vy,
                 <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sTarget)</code>
<div class="block">Convert screen coordinate to source coordinate.</div>
</td>
</tr>
<tr id="i69" class="rowColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#viewToSourceCoord-android.graphics.PointF-">viewToSourceCoord</a></span>(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;vxy)</code>
<div class="block">Convert screen coordinate to source coordinate.</div>
</td>
</tr>
<tr id="i70" class="altColor">
<td class="colFirst"><code><a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a></code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#viewToSourceCoord-android.graphics.PointF-android.graphics.PointF-">viewToSourceCoord</a></span>(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;vxy,
                 <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sTarget)</code>
<div class="block">Convert screen coordinate to source coordinate.</div>
</td>
</tr>
<tr id="i71" class="rowColor">
<td class="colFirst"><code>void</code></td>
<td class="colLast"><code><span class="memberNameLink"><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#visibleFileRect-android.graphics.Rect-">visibleFileRect</a></span>(<a href="https://developer.android.com/reference/android/graphics/Rect.html?is-external=true" title="class or interface in android.graphics">Rect</a>&nbsp;fRect)</code>
<div class="block">Find the area of the source file that is currently visible on screen, taking into account the
 current scale, translation, orientation and clipped region.</div>
</td>
</tr>
</table>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.android.view.View">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;android.view.<a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></h3>
<code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true#addChildrenForAccessibility-java.util.ArrayList-" title="class or interface in android.view">addChildrenForAccessibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#addExtraDataToAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-java.lang.String-android.os.Bundle-" title="class or interface in android.view">addExtraDataToAccessibilityNodeInfo</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#addFocusables-java.util.ArrayList-int-" title="class or interface in android.view">addFocusables</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#addFocusables-java.util.ArrayList-int-int-" title="class or interface in android.view">addFocusables</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#addKeyboardNavigationClusters-java.util.Collection-int-" title="class or interface in android.view">addKeyboardNavigationClusters</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#addOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-" title="class or interface in android.view">addOnAttachStateChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#addOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-" title="class or interface in android.view">addOnLayoutChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#addTouchables-java.util.ArrayList-" title="class or interface in android.view">addTouchables</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#animate--" title="class or interface in android.view">animate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#announceForAccessibility-java.lang.CharSequence-" title="class or interface in android.view">announceForAccessibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#autofill-android.view.autofill.AutofillValue-" title="class or interface in android.view">autofill</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#autofill-android.util.SparseArray-" title="class or interface in android.view">autofill</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#awakenScrollBars--" title="class or interface in android.view">awakenScrollBars</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#awakenScrollBars-int-" title="class or interface in android.view">awakenScrollBars</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#awakenScrollBars-int-boolean-" title="class or interface in android.view">awakenScrollBars</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#bringToFront--" title="class or interface in android.view">bringToFront</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#buildDrawingCache--" title="class or interface in android.view">buildDrawingCache</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#buildDrawingCache-boolean-" title="class or interface in android.view">buildDrawingCache</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#buildLayer--" title="class or interface in android.view">buildLayer</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#callOnClick--" title="class or interface in android.view">callOnClick</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#cancelDragAndDrop--" title="class or interface in android.view">cancelDragAndDrop</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#cancelLongPress--" title="class or interface in android.view">cancelLongPress</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#cancelPendingInputEvents--" title="class or interface in android.view">cancelPendingInputEvents</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#canResolveLayoutDirection--" title="class or interface in android.view">canResolveLayoutDirection</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#canResolveTextAlignment--" title="class or interface in android.view">canResolveTextAlignment</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#canResolveTextDirection--" title="class or interface in android.view">canResolveTextDirection</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#canScrollHorizontally-int-" title="class or interface in android.view">canScrollHorizontally</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#canScrollVertically-int-" title="class or interface in android.view">canScrollVertically</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#checkInputConnectionProxy-android.view.View-" title="class or interface in android.view">checkInputConnectionProxy</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#clearAnimation--" title="class or interface in android.view">clearAnimation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#clearFocus--" title="class or interface in android.view">clearFocus</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#combineMeasuredStates-int-int-" title="class or interface in android.view">combineMeasuredStates</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#computeHorizontalScrollExtent--" title="class or interface in android.view">computeHorizontalScrollExtent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#computeHorizontalScrollOffset--" title="class or interface in android.view">computeHorizontalScrollOffset</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#computeHorizontalScrollRange--" title="class or interface in android.view">computeHorizontalScrollRange</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#computeScroll--" title="class or interface in android.view">computeScroll</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#computeSystemWindowInsets-android.view.WindowInsets-android.graphics.Rect-" title="class or interface in android.view">computeSystemWindowInsets</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#computeVerticalScrollExtent--" title="class or interface in android.view">computeVerticalScrollExtent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#computeVerticalScrollOffset--" title="class or interface in android.view">computeVerticalScrollOffset</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#computeVerticalScrollRange--" title="class or interface in android.view">computeVerticalScrollRange</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#createAccessibilityNodeInfo--" title="class or interface in android.view">createAccessibilityNodeInfo</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#createContextMenu-android.view.ContextMenu-" title="class or interface in android.view">createContextMenu</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#destroyDrawingCache--" title="class or interface in android.view">destroyDrawingCache</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchApplyWindowInsets-android.view.WindowInsets-" title="class or interface in android.view">dispatchApplyWindowInsets</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchCapturedPointerEvent-android.view.MotionEvent-" title="class or interface in android.view">dispatchCapturedPointerEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchConfigurationChanged-android.content.res.Configuration-" title="class or interface in android.view">dispatchConfigurationChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchDisplayHint-int-" title="class or interface in android.view">dispatchDisplayHint</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchDragEvent-android.view.DragEvent-" title="class or interface in android.view">dispatchDragEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchDraw-android.graphics.Canvas-" title="class or interface in android.view">dispatchDraw</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchDrawableHotspotChanged-float-float-" title="class or interface in android.view">dispatchDrawableHotspotChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchFinishTemporaryDetach--" title="class or interface in android.view">dispatchFinishTemporaryDetach</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchGenericFocusedEvent-android.view.MotionEvent-" title="class or interface in android.view">dispatchGenericFocusedEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchGenericMotionEvent-android.view.MotionEvent-" title="class or interface in android.view">dispatchGenericMotionEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchGenericPointerEvent-android.view.MotionEvent-" title="class or interface in android.view">dispatchGenericPointerEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchHoverEvent-android.view.MotionEvent-" title="class or interface in android.view">dispatchHoverEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchKeyEvent-android.view.KeyEvent-" title="class or interface in android.view">dispatchKeyEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchKeyEventPreIme-android.view.KeyEvent-" title="class or interface in android.view">dispatchKeyEventPreIme</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchKeyShortcutEvent-android.view.KeyEvent-" title="class or interface in android.view">dispatchKeyShortcutEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchNestedFling-float-float-boolean-" title="class or interface in android.view">dispatchNestedFling</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchNestedPreFling-float-float-" title="class or interface in android.view">dispatchNestedPreFling</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchNestedPrePerformAccessibilityAction-int-android.os.Bundle-" title="class or interface in android.view">dispatchNestedPrePerformAccessibilityAction</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchNestedPreScroll-int-int-int:A-int:A-" title="class or interface in android.view">dispatchNestedPreScroll</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchNestedScroll-int-int-int-int-int:A-" title="class or interface in android.view">dispatchNestedScroll</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchPointerCaptureChanged-boolean-" title="class or interface in android.view">dispatchPointerCaptureChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-" title="class or interface in android.view">dispatchPopulateAccessibilityEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchProvideAutofillStructure-android.view.ViewStructure-int-" title="class or interface in android.view">dispatchProvideAutofillStructure</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchProvideStructure-android.view.ViewStructure-" title="class or interface in android.view">dispatchProvideStructure</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchRestoreInstanceState-android.util.SparseArray-" title="class or interface in android.view">dispatchRestoreInstanceState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchSaveInstanceState-android.util.SparseArray-" title="class or interface in android.view">dispatchSaveInstanceState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchSetActivated-boolean-" title="class or interface in android.view">dispatchSetActivated</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchSetPressed-boolean-" title="class or interface in android.view">dispatchSetPressed</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchSetSelected-boolean-" title="class or interface in android.view">dispatchSetSelected</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchStartTemporaryDetach--" title="class or interface in android.view">dispatchStartTemporaryDetach</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchSystemUiVisibilityChanged-int-" title="class or interface in android.view">dispatchSystemUiVisibilityChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchTouchEvent-android.view.MotionEvent-" title="class or interface in android.view">dispatchTouchEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchTrackballEvent-android.view.MotionEvent-" title="class or interface in android.view">dispatchTrackballEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchUnhandledMove-android.view.View-int-" title="class or interface in android.view">dispatchUnhandledMove</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchVisibilityChanged-android.view.View-int-" title="class or interface in android.view">dispatchVisibilityChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchWindowFocusChanged-boolean-" title="class or interface in android.view">dispatchWindowFocusChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchWindowSystemUiVisiblityChanged-int-" title="class or interface in android.view">dispatchWindowSystemUiVisiblityChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#dispatchWindowVisibilityChanged-int-" title="class or interface in android.view">dispatchWindowVisibilityChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#draw-android.graphics.Canvas-" title="class or interface in android.view">draw</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#drawableHotspotChanged-float-float-" title="class or interface in android.view">drawableHotspotChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#drawableStateChanged--" title="class or interface in android.view">drawableStateChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#findFocus--" title="class or interface in android.view">findFocus</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#findViewById-int-" title="class or interface in android.view">findViewById</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#findViewsWithText-java.util.ArrayList-java.lang.CharSequence-int-" title="class or interface in android.view">findViewsWithText</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#findViewWithTag-java.lang.Object-" title="class or interface in android.view">findViewWithTag</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#fitSystemWindows-android.graphics.Rect-" title="class or interface in android.view">fitSystemWindows</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#focusSearch-int-" title="class or interface in android.view">focusSearch</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#forceHasOverlappingRendering-boolean-" title="class or interface in android.view">forceHasOverlappingRendering</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#forceLayout--" title="class or interface in android.view">forceLayout</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#generateViewId--" title="class or interface in android.view">generateViewId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAccessibilityClassName--" title="class or interface in android.view">getAccessibilityClassName</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAccessibilityLiveRegion--" title="class or interface in android.view">getAccessibilityLiveRegion</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAccessibilityNodeProvider--" title="class or interface in android.view">getAccessibilityNodeProvider</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAccessibilityTraversalAfter--" title="class or interface in android.view">getAccessibilityTraversalAfter</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAccessibilityTraversalBefore--" title="class or interface in android.view">getAccessibilityTraversalBefore</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAlpha--" title="class or interface in android.view">getAlpha</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAnimation--" title="class or interface in android.view">getAnimation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getApplicationWindowToken--" title="class or interface in android.view">getApplicationWindowToken</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAutofillHints--" title="class or interface in android.view">getAutofillHints</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAutofillId--" title="class or interface in android.view">getAutofillId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAutofillType--" title="class or interface in android.view">getAutofillType</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getAutofillValue--" title="class or interface in android.view">getAutofillValue</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getBackground--" title="class or interface in android.view">getBackground</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getBackgroundTintList--" title="class or interface in android.view">getBackgroundTintList</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getBackgroundTintMode--" title="class or interface in android.view">getBackgroundTintMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getBaseline--" title="class or interface in android.view">getBaseline</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getBottom--" title="class or interface in android.view">getBottom</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getBottomFadingEdgeStrength--" title="class or interface in android.view">getBottomFadingEdgeStrength</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getBottomPaddingOffset--" title="class or interface in android.view">getBottomPaddingOffset</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getCameraDistance--" title="class or interface in android.view">getCameraDistance</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getClipBounds--" title="class or interface in android.view">getClipBounds</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getClipBounds-android.graphics.Rect-" title="class or interface in android.view">getClipBounds</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getClipToOutline--" title="class or interface in android.view">getClipToOutline</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getContentDescription--" title="class or interface in android.view">getContentDescription</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getContext--" title="class or interface in android.view">getContext</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getContextMenuInfo--" title="class or interface in android.view">getContextMenuInfo</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDefaultFocusHighlightEnabled--" title="class or interface in android.view">getDefaultFocusHighlightEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDefaultSize-int-int-" title="class or interface in android.view">getDefaultSize</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDisplay--" title="class or interface in android.view">getDisplay</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDrawableState--" title="class or interface in android.view">getDrawableState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDrawingCache--" title="class or interface in android.view">getDrawingCache</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDrawingCache-boolean-" title="class or interface in android.view">getDrawingCache</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDrawingCacheBackgroundColor--" title="class or interface in android.view">getDrawingCacheBackgroundColor</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDrawingCacheQuality--" title="class or interface in android.view">getDrawingCacheQuality</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDrawingRect-android.graphics.Rect-" title="class or interface in android.view">getDrawingRect</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getDrawingTime--" title="class or interface in android.view">getDrawingTime</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getElevation--" title="class or interface in android.view">getElevation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getFilterTouchesWhenObscured--" title="class or interface in android.view">getFilterTouchesWhenObscured</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getFitsSystemWindows--" title="class or interface in android.view">getFitsSystemWindows</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getFocusable--" title="class or interface in android.view">getFocusable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getFocusables-int-" title="class or interface in android.view">getFocusables</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getFocusedRect-android.graphics.Rect-" title="class or interface in android.view">getFocusedRect</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getForeground--" title="class or interface in android.view">getForeground</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getForegroundGravity--" title="class or interface in android.view">getForegroundGravity</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getForegroundTintList--" title="class or interface in android.view">getForegroundTintList</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getForegroundTintMode--" title="class or interface in android.view">getForegroundTintMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getGlobalVisibleRect-android.graphics.Rect-" title="class or interface in android.view">getGlobalVisibleRect</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getGlobalVisibleRect-android.graphics.Rect-android.graphics.Point-" title="class or interface in android.view">getGlobalVisibleRect</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getHandler--" title="class or interface in android.view">getHandler</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getHasOverlappingRendering--" title="class or interface in android.view">getHasOverlappingRendering</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getHeight--" title="class or interface in android.view">getHeight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getHitRect-android.graphics.Rect-" title="class or interface in android.view">getHitRect</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getHorizontalFadingEdgeLength--" title="class or interface in android.view">getHorizontalFadingEdgeLength</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getHorizontalScrollbarHeight--" title="class or interface in android.view">getHorizontalScrollbarHeight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getId--" title="class or interface in android.view">getId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getImportantForAccessibility--" title="class or interface in android.view">getImportantForAccessibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getImportantForAutofill--" title="class or interface in android.view">getImportantForAutofill</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getKeepScreenOn--" title="class or interface in android.view">getKeepScreenOn</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getKeyDispatcherState--" title="class or interface in android.view">getKeyDispatcherState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLabelFor--" title="class or interface in android.view">getLabelFor</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLayerType--" title="class or interface in android.view">getLayerType</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLayoutDirection--" title="class or interface in android.view">getLayoutDirection</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLayoutParams--" title="class or interface in android.view">getLayoutParams</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLeft--" title="class or interface in android.view">getLeft</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLeftFadingEdgeStrength--" title="class or interface in android.view">getLeftFadingEdgeStrength</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLeftPaddingOffset--" title="class or interface in android.view">getLeftPaddingOffset</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLocalVisibleRect-android.graphics.Rect-" title="class or interface in android.view">getLocalVisibleRect</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLocationInWindow-int:A-" title="class or interface in android.view">getLocationInWindow</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getLocationOnScreen-int:A-" title="class or interface in android.view">getLocationOnScreen</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getMatrix--" title="class or interface in android.view">getMatrix</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getMeasuredHeight--" title="class or interface in android.view">getMeasuredHeight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getMeasuredHeightAndState--" title="class or interface in android.view">getMeasuredHeightAndState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getMeasuredState--" title="class or interface in android.view">getMeasuredState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getMeasuredWidth--" title="class or interface in android.view">getMeasuredWidth</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getMeasuredWidthAndState--" title="class or interface in android.view">getMeasuredWidthAndState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getMinimumHeight--" title="class or interface in android.view">getMinimumHeight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getMinimumWidth--" title="class or interface in android.view">getMinimumWidth</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getNextClusterForwardId--" title="class or interface in android.view">getNextClusterForwardId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getNextFocusDownId--" title="class or interface in android.view">getNextFocusDownId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getNextFocusForwardId--" title="class or interface in android.view">getNextFocusForwardId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getNextFocusLeftId--" title="class or interface in android.view">getNextFocusLeftId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getNextFocusRightId--" title="class or interface in android.view">getNextFocusRightId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getNextFocusUpId--" title="class or interface in android.view">getNextFocusUpId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getOnFocusChangeListener--" title="class or interface in android.view">getOnFocusChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getOutlineProvider--" title="class or interface in android.view">getOutlineProvider</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getOverlay--" title="class or interface in android.view">getOverlay</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getOverScrollMode--" title="class or interface in android.view">getOverScrollMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPaddingBottom--" title="class or interface in android.view">getPaddingBottom</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPaddingEnd--" title="class or interface in android.view">getPaddingEnd</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPaddingLeft--" title="class or interface in android.view">getPaddingLeft</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPaddingRight--" title="class or interface in android.view">getPaddingRight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPaddingStart--" title="class or interface in android.view">getPaddingStart</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPaddingTop--" title="class or interface in android.view">getPaddingTop</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getParent--" title="class or interface in android.view">getParent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getParentForAccessibility--" title="class or interface in android.view">getParentForAccessibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPivotX--" title="class or interface in android.view">getPivotX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPivotY--" title="class or interface in android.view">getPivotY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getPointerIcon--" title="class or interface in android.view">getPointerIcon</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getResources--" title="class or interface in android.view">getResources</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRevealOnFocusHint--" title="class or interface in android.view">getRevealOnFocusHint</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRight--" title="class or interface in android.view">getRight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRightFadingEdgeStrength--" title="class or interface in android.view">getRightFadingEdgeStrength</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRightPaddingOffset--" title="class or interface in android.view">getRightPaddingOffset</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRootView--" title="class or interface in android.view">getRootView</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRootWindowInsets--" title="class or interface in android.view">getRootWindowInsets</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRotation--" title="class or interface in android.view">getRotation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRotationX--" title="class or interface in android.view">getRotationX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getRotationY--" title="class or interface in android.view">getRotationY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScaleX--" title="class or interface in android.view">getScaleX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScaleY--" title="class or interface in android.view">getScaleY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScrollBarDefaultDelayBeforeFade--" title="class or interface in android.view">getScrollBarDefaultDelayBeforeFade</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScrollBarFadeDuration--" title="class or interface in android.view">getScrollBarFadeDuration</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScrollBarSize--" title="class or interface in android.view">getScrollBarSize</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScrollBarStyle--" title="class or interface in android.view">getScrollBarStyle</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScrollIndicators--" title="class or interface in android.view">getScrollIndicators</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScrollX--" title="class or interface in android.view">getScrollX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getScrollY--" title="class or interface in android.view">getScrollY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getSolidColor--" title="class or interface in android.view">getSolidColor</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getStateListAnimator--" title="class or interface in android.view">getStateListAnimator</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getSuggestedMinimumHeight--" title="class or interface in android.view">getSuggestedMinimumHeight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getSuggestedMinimumWidth--" title="class or interface in android.view">getSuggestedMinimumWidth</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getSystemUiVisibility--" title="class or interface in android.view">getSystemUiVisibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTag--" title="class or interface in android.view">getTag</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTag-int-" title="class or interface in android.view">getTag</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTextAlignment--" title="class or interface in android.view">getTextAlignment</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTextDirection--" title="class or interface in android.view">getTextDirection</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTooltipText--" title="class or interface in android.view">getTooltipText</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTop--" title="class or interface in android.view">getTop</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTopFadingEdgeStrength--" title="class or interface in android.view">getTopFadingEdgeStrength</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTopPaddingOffset--" title="class or interface in android.view">getTopPaddingOffset</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTouchables--" title="class or interface in android.view">getTouchables</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTouchDelegate--" title="class or interface in android.view">getTouchDelegate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTransitionName--" title="class or interface in android.view">getTransitionName</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTranslationX--" title="class or interface in android.view">getTranslationX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTranslationY--" title="class or interface in android.view">getTranslationY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getTranslationZ--" title="class or interface in android.view">getTranslationZ</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getVerticalFadingEdgeLength--" title="class or interface in android.view">getVerticalFadingEdgeLength</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getVerticalScrollbarPosition--" title="class or interface in android.view">getVerticalScrollbarPosition</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getVerticalScrollbarWidth--" title="class or interface in android.view">getVerticalScrollbarWidth</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getViewTreeObserver--" title="class or interface in android.view">getViewTreeObserver</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getVisibility--" title="class or interface in android.view">getVisibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getWidth--" title="class or interface in android.view">getWidth</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getWindowAttachCount--" title="class or interface in android.view">getWindowAttachCount</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getWindowId--" title="class or interface in android.view">getWindowId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getWindowSystemUiVisibility--" title="class or interface in android.view">getWindowSystemUiVisibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getWindowToken--" title="class or interface in android.view">getWindowToken</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getWindowVisibility--" title="class or interface in android.view">getWindowVisibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getWindowVisibleDisplayFrame-android.graphics.Rect-" title="class or interface in android.view">getWindowVisibleDisplayFrame</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getX--" title="class or interface in android.view">getX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getY--" title="class or interface in android.view">getY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#getZ--" title="class or interface in android.view">getZ</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasExplicitFocusable--" title="class or interface in android.view">hasExplicitFocusable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasFocus--" title="class or interface in android.view">hasFocus</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasFocusable--" title="class or interface in android.view">hasFocusable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasNestedScrollingParent--" title="class or interface in android.view">hasNestedScrollingParent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasOnClickListeners--" title="class or interface in android.view">hasOnClickListeners</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasOverlappingRendering--" title="class or interface in android.view">hasOverlappingRendering</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasPointerCapture--" title="class or interface in android.view">hasPointerCapture</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasTransientState--" title="class or interface in android.view">hasTransientState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#hasWindowFocus--" title="class or interface in android.view">hasWindowFocus</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#inflate-android.content.Context-int-android.view.ViewGroup-" title="class or interface in android.view">inflate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#invalidate--" title="class or interface in android.view">invalidate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#invalidate-int-int-int-int-" title="class or interface in android.view">invalidate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#invalidate-android.graphics.Rect-" title="class or interface in android.view">invalidate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#invalidateDrawable-android.graphics.drawable.Drawable-" title="class or interface in android.view">invalidateDrawable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#invalidateOutline--" title="class or interface in android.view">invalidateOutline</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isAccessibilityFocused--" title="class or interface in android.view">isAccessibilityFocused</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isActivated--" title="class or interface in android.view">isActivated</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isAttachedToWindow--" title="class or interface in android.view">isAttachedToWindow</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isClickable--" title="class or interface in android.view">isClickable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isContextClickable--" title="class or interface in android.view">isContextClickable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isDirty--" title="class or interface in android.view">isDirty</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isDrawingCacheEnabled--" title="class or interface in android.view">isDrawingCacheEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isDuplicateParentStateEnabled--" title="class or interface in android.view">isDuplicateParentStateEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isEnabled--" title="class or interface in android.view">isEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isFocusable--" title="class or interface in android.view">isFocusable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isFocusableInTouchMode--" title="class or interface in android.view">isFocusableInTouchMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isFocused--" title="class or interface in android.view">isFocused</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isFocusedByDefault--" title="class or interface in android.view">isFocusedByDefault</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isHapticFeedbackEnabled--" title="class or interface in android.view">isHapticFeedbackEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isHardwareAccelerated--" title="class or interface in android.view">isHardwareAccelerated</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isHorizontalFadingEdgeEnabled--" title="class or interface in android.view">isHorizontalFadingEdgeEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isHorizontalScrollBarEnabled--" title="class or interface in android.view">isHorizontalScrollBarEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isHovered--" title="class or interface in android.view">isHovered</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isImportantForAccessibility--" title="class or interface in android.view">isImportantForAccessibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isImportantForAutofill--" title="class or interface in android.view">isImportantForAutofill</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isInEditMode--" title="class or interface in android.view">isInEditMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isInLayout--" title="class or interface in android.view">isInLayout</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isInTouchMode--" title="class or interface in android.view">isInTouchMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isKeyboardNavigationCluster--" title="class or interface in android.view">isKeyboardNavigationCluster</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isLaidOut--" title="class or interface in android.view">isLaidOut</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isLayoutDirectionResolved--" title="class or interface in android.view">isLayoutDirectionResolved</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isLayoutRequested--" title="class or interface in android.view">isLayoutRequested</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isLongClickable--" title="class or interface in android.view">isLongClickable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isNestedScrollingEnabled--" title="class or interface in android.view">isNestedScrollingEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isOpaque--" title="class or interface in android.view">isOpaque</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isPaddingOffsetRequired--" title="class or interface in android.view">isPaddingOffsetRequired</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isPaddingRelative--" title="class or interface in android.view">isPaddingRelative</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isPressed--" title="class or interface in android.view">isPressed</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isSaveEnabled--" title="class or interface in android.view">isSaveEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isSaveFromParentEnabled--" title="class or interface in android.view">isSaveFromParentEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isScrollbarFadingEnabled--" title="class or interface in android.view">isScrollbarFadingEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isScrollContainer--" title="class or interface in android.view">isScrollContainer</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isSelected--" title="class or interface in android.view">isSelected</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isShown--" title="class or interface in android.view">isShown</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isSoundEffectsEnabled--" title="class or interface in android.view">isSoundEffectsEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isTemporarilyDetached--" title="class or interface in android.view">isTemporarilyDetached</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isTextAlignmentResolved--" title="class or interface in android.view">isTextAlignmentResolved</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isTextDirectionResolved--" title="class or interface in android.view">isTextDirectionResolved</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isVerticalFadingEdgeEnabled--" title="class or interface in android.view">isVerticalFadingEdgeEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#isVerticalScrollBarEnabled--" title="class or interface in android.view">isVerticalScrollBarEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#jumpDrawablesToCurrentState--" title="class or interface in android.view">jumpDrawablesToCurrentState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#keyboardNavigationClusterSearch-android.view.View-int-" title="class or interface in android.view">keyboardNavigationClusterSearch</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#layout-int-int-int-int-" title="class or interface in android.view">layout</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#measure-int-int-" title="class or interface in android.view">measure</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#mergeDrawableStates-int:A-int:A-" title="class or interface in android.view">mergeDrawableStates</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#offsetLeftAndRight-int-" title="class or interface in android.view">offsetLeftAndRight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#offsetTopAndBottom-int-" title="class or interface in android.view">offsetTopAndBottom</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onAnimationEnd--" title="class or interface in android.view">onAnimationEnd</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onAnimationStart--" title="class or interface in android.view">onAnimationStart</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onApplyWindowInsets-android.view.WindowInsets-" title="class or interface in android.view">onApplyWindowInsets</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onAttachedToWindow--" title="class or interface in android.view">onAttachedToWindow</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onCancelPendingInputEvents--" title="class or interface in android.view">onCancelPendingInputEvents</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onCapturedPointerEvent-android.view.MotionEvent-" title="class or interface in android.view">onCapturedPointerEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onCheckIsTextEditor--" title="class or interface in android.view">onCheckIsTextEditor</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onConfigurationChanged-android.content.res.Configuration-" title="class or interface in android.view">onConfigurationChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onCreateContextMenu-android.view.ContextMenu-" title="class or interface in android.view">onCreateContextMenu</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onCreateDrawableState-int-" title="class or interface in android.view">onCreateDrawableState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onCreateInputConnection-android.view.inputmethod.EditorInfo-" title="class or interface in android.view">onCreateInputConnection</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onDetachedFromWindow--" title="class or interface in android.view">onDetachedFromWindow</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onDisplayHint-int-" title="class or interface in android.view">onDisplayHint</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onDragEvent-android.view.DragEvent-" title="class or interface in android.view">onDragEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onDrawForeground-android.graphics.Canvas-" title="class or interface in android.view">onDrawForeground</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onDrawScrollBars-android.graphics.Canvas-" title="class or interface in android.view">onDrawScrollBars</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onFilterTouchEventForSecurity-android.view.MotionEvent-" title="class or interface in android.view">onFilterTouchEventForSecurity</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onFinishInflate--" title="class or interface in android.view">onFinishInflate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onFinishTemporaryDetach--" title="class or interface in android.view">onFinishTemporaryDetach</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onFocusChanged-boolean-int-android.graphics.Rect-" title="class or interface in android.view">onFocusChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onGenericMotionEvent-android.view.MotionEvent-" title="class or interface in android.view">onGenericMotionEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onHoverChanged-boolean-" title="class or interface in android.view">onHoverChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onHoverEvent-android.view.MotionEvent-" title="class or interface in android.view">onHoverEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onInitializeAccessibilityEvent-android.view.accessibility.AccessibilityEvent-" title="class or interface in android.view">onInitializeAccessibilityEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onInitializeAccessibilityNodeInfo-android.view.accessibility.AccessibilityNodeInfo-" title="class or interface in android.view">onInitializeAccessibilityNodeInfo</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onKeyDown-int-android.view.KeyEvent-" title="class or interface in android.view">onKeyDown</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onKeyLongPress-int-android.view.KeyEvent-" title="class or interface in android.view">onKeyLongPress</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onKeyMultiple-int-int-android.view.KeyEvent-" title="class or interface in android.view">onKeyMultiple</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onKeyPreIme-int-android.view.KeyEvent-" title="class or interface in android.view">onKeyPreIme</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onKeyShortcut-int-android.view.KeyEvent-" title="class or interface in android.view">onKeyShortcut</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onKeyUp-int-android.view.KeyEvent-" title="class or interface in android.view">onKeyUp</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onLayout-boolean-int-int-int-int-" title="class or interface in android.view">onLayout</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onOverScrolled-int-int-boolean-boolean-" title="class or interface in android.view">onOverScrolled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onPointerCaptureChange-boolean-" title="class or interface in android.view">onPointerCaptureChange</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onPopulateAccessibilityEvent-android.view.accessibility.AccessibilityEvent-" title="class or interface in android.view">onPopulateAccessibilityEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onProvideAutofillStructure-android.view.ViewStructure-int-" title="class or interface in android.view">onProvideAutofillStructure</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onProvideAutofillVirtualStructure-android.view.ViewStructure-int-" title="class or interface in android.view">onProvideAutofillVirtualStructure</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onProvideStructure-android.view.ViewStructure-" title="class or interface in android.view">onProvideStructure</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onProvideVirtualStructure-android.view.ViewStructure-" title="class or interface in android.view">onProvideVirtualStructure</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onResolvePointerIcon-android.view.MotionEvent-int-" title="class or interface in android.view">onResolvePointerIcon</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onRestoreInstanceState-android.os.Parcelable-" title="class or interface in android.view">onRestoreInstanceState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onRtlPropertiesChanged-int-" title="class or interface in android.view">onRtlPropertiesChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onSaveInstanceState--" title="class or interface in android.view">onSaveInstanceState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onScreenStateChanged-int-" title="class or interface in android.view">onScreenStateChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onScrollChanged-int-int-int-int-" title="class or interface in android.view">onScrollChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onSetAlpha-int-" title="class or interface in android.view">onSetAlpha</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onStartTemporaryDetach--" title="class or interface in android.view">onStartTemporaryDetach</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onTrackballEvent-android.view.MotionEvent-" title="class or interface in android.view">onTrackballEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onVisibilityAggregated-boolean-" title="class or interface in android.view">onVisibilityAggregated</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onVisibilityChanged-android.view.View-int-" title="class or interface in android.view">onVisibilityChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onWindowFocusChanged-boolean-" title="class or interface in android.view">onWindowFocusChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onWindowSystemUiVisibilityChanged-int-" title="class or interface in android.view">onWindowSystemUiVisibilityChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onWindowVisibilityChanged-int-" title="class or interface in android.view">onWindowVisibilityChanged</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#overScrollBy-int-int-int-int-int-int-int-int-boolean-" title="class or interface in android.view">overScrollBy</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#performAccessibilityAction-int-android.os.Bundle-" title="class or interface in android.view">performAccessibilityAction</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#performClick--" title="class or interface in android.view">performClick</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#performContextClick--" title="class or interface in android.view">performContextClick</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#performContextClick-float-float-" title="class or interface in android.view">performContextClick</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#performHapticFeedback-int-" title="class or interface in android.view">performHapticFeedback</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#performHapticFeedback-int-int-" title="class or interface in android.view">performHapticFeedback</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#performLongClick--" title="class or interface in android.view">performLongClick</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#performLongClick-float-float-" title="class or interface in android.view">performLongClick</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#playSoundEffect-int-" title="class or interface in android.view">playSoundEffect</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#post-java.lang.Runnable-" title="class or interface in android.view">post</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postDelayed-java.lang.Runnable-long-" title="class or interface in android.view">postDelayed</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postInvalidate--" title="class or interface in android.view">postInvalidate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postInvalidate-int-int-int-int-" title="class or interface in android.view">postInvalidate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postInvalidateDelayed-long-" title="class or interface in android.view">postInvalidateDelayed</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postInvalidateDelayed-long-int-int-int-int-" title="class or interface in android.view">postInvalidateDelayed</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postInvalidateOnAnimation--" title="class or interface in android.view">postInvalidateOnAnimation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postInvalidateOnAnimation-int-int-int-int-" title="class or interface in android.view">postInvalidateOnAnimation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postOnAnimation-java.lang.Runnable-" title="class or interface in android.view">postOnAnimation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#postOnAnimationDelayed-java.lang.Runnable-long-" title="class or interface in android.view">postOnAnimationDelayed</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#refreshDrawableState--" title="class or interface in android.view">refreshDrawableState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#releasePointerCapture--" title="class or interface in android.view">releasePointerCapture</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#removeCallbacks-java.lang.Runnable-" title="class or interface in android.view">removeCallbacks</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#removeOnAttachStateChangeListener-android.view.View.OnAttachStateChangeListener-" title="class or interface in android.view">removeOnAttachStateChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#removeOnLayoutChangeListener-android.view.View.OnLayoutChangeListener-" title="class or interface in android.view">removeOnLayoutChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestApplyInsets--" title="class or interface in android.view">requestApplyInsets</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestFitSystemWindows--" title="class or interface in android.view">requestFitSystemWindows</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestFocus--" title="class or interface in android.view">requestFocus</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestFocus-int-" title="class or interface in android.view">requestFocus</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestFocus-int-android.graphics.Rect-" title="class or interface in android.view">requestFocus</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestFocusFromTouch--" title="class or interface in android.view">requestFocusFromTouch</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestLayout--" title="class or interface in android.view">requestLayout</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestPointerCapture--" title="class or interface in android.view">requestPointerCapture</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestRectangleOnScreen-android.graphics.Rect-" title="class or interface in android.view">requestRectangleOnScreen</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestRectangleOnScreen-android.graphics.Rect-boolean-" title="class or interface in android.view">requestRectangleOnScreen</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#requestUnbufferedDispatch-android.view.MotionEvent-" title="class or interface in android.view">requestUnbufferedDispatch</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#resolveSize-int-int-" title="class or interface in android.view">resolveSize</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#resolveSizeAndState-int-int-int-" title="class or interface in android.view">resolveSizeAndState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#restoreDefaultFocus--" title="class or interface in android.view">restoreDefaultFocus</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#restoreHierarchyState-android.util.SparseArray-" title="class or interface in android.view">restoreHierarchyState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#saveHierarchyState-android.util.SparseArray-" title="class or interface in android.view">saveHierarchyState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#scheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-long-" title="class or interface in android.view">scheduleDrawable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#scrollBy-int-int-" title="class or interface in android.view">scrollBy</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#scrollTo-int-int-" title="class or interface in android.view">scrollTo</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#sendAccessibilityEvent-int-" title="class or interface in android.view">sendAccessibilityEvent</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#sendAccessibilityEventUnchecked-android.view.accessibility.AccessibilityEvent-" title="class or interface in android.view">sendAccessibilityEventUnchecked</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setAccessibilityDelegate-android.view.View.AccessibilityDelegate-" title="class or interface in android.view">setAccessibilityDelegate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setAccessibilityLiveRegion-int-" title="class or interface in android.view">setAccessibilityLiveRegion</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setAccessibilityTraversalAfter-int-" title="class or interface in android.view">setAccessibilityTraversalAfter</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setAccessibilityTraversalBefore-int-" title="class or interface in android.view">setAccessibilityTraversalBefore</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setActivated-boolean-" title="class or interface in android.view">setActivated</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setAlpha-float-" title="class or interface in android.view">setAlpha</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setAnimation-android.view.animation.Animation-" title="class or interface in android.view">setAnimation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setAutofillHints-java.lang.String...-" title="class or interface in android.view">setAutofillHints</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setBackground-android.graphics.drawable.Drawable-" title="class or interface in android.view">setBackground</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setBackgroundColor-int-" title="class or interface in android.view">setBackgroundColor</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setBackgroundDrawable-android.graphics.drawable.Drawable-" title="class or interface in android.view">setBackgroundDrawable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setBackgroundResource-int-" title="class or interface in android.view">setBackgroundResource</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setBackgroundTintList-android.content.res.ColorStateList-" title="class or interface in android.view">setBackgroundTintList</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setBackgroundTintMode-android.graphics.PorterDuff.Mode-" title="class or interface in android.view">setBackgroundTintMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setBottom-int-" title="class or interface in android.view">setBottom</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setCameraDistance-float-" title="class or interface in android.view">setCameraDistance</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setClickable-boolean-" title="class or interface in android.view">setClickable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setClipBounds-android.graphics.Rect-" title="class or interface in android.view">setClipBounds</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setClipToOutline-boolean-" title="class or interface in android.view">setClipToOutline</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setContentDescription-java.lang.CharSequence-" title="class or interface in android.view">setContentDescription</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setContextClickable-boolean-" title="class or interface in android.view">setContextClickable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setDefaultFocusHighlightEnabled-boolean-" title="class or interface in android.view">setDefaultFocusHighlightEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setDrawingCacheBackgroundColor-int-" title="class or interface in android.view">setDrawingCacheBackgroundColor</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setDrawingCacheEnabled-boolean-" title="class or interface in android.view">setDrawingCacheEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setDrawingCacheQuality-int-" title="class or interface in android.view">setDrawingCacheQuality</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setDuplicateParentStateEnabled-boolean-" title="class or interface in android.view">setDuplicateParentStateEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setElevation-float-" title="class or interface in android.view">setElevation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setEnabled-boolean-" title="class or interface in android.view">setEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setFadingEdgeLength-int-" title="class or interface in android.view">setFadingEdgeLength</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setFilterTouchesWhenObscured-boolean-" title="class or interface in android.view">setFilterTouchesWhenObscured</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setFitsSystemWindows-boolean-" title="class or interface in android.view">setFitsSystemWindows</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setFocusable-boolean-" title="class or interface in android.view">setFocusable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setFocusable-int-" title="class or interface in android.view">setFocusable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setFocusableInTouchMode-boolean-" title="class or interface in android.view">setFocusableInTouchMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setFocusedByDefault-boolean-" title="class or interface in android.view">setFocusedByDefault</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setForeground-android.graphics.drawable.Drawable-" title="class or interface in android.view">setForeground</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setForegroundGravity-int-" title="class or interface in android.view">setForegroundGravity</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setForegroundTintList-android.content.res.ColorStateList-" title="class or interface in android.view">setForegroundTintList</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setForegroundTintMode-android.graphics.PorterDuff.Mode-" title="class or interface in android.view">setForegroundTintMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setHapticFeedbackEnabled-boolean-" title="class or interface in android.view">setHapticFeedbackEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setHasTransientState-boolean-" title="class or interface in android.view">setHasTransientState</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setHorizontalFadingEdgeEnabled-boolean-" title="class or interface in android.view">setHorizontalFadingEdgeEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setHorizontalScrollBarEnabled-boolean-" title="class or interface in android.view">setHorizontalScrollBarEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setHovered-boolean-" title="class or interface in android.view">setHovered</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setId-int-" title="class or interface in android.view">setId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setImportantForAccessibility-int-" title="class or interface in android.view">setImportantForAccessibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setImportantForAutofill-int-" title="class or interface in android.view">setImportantForAutofill</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setKeepScreenOn-boolean-" title="class or interface in android.view">setKeepScreenOn</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setKeyboardNavigationCluster-boolean-" title="class or interface in android.view">setKeyboardNavigationCluster</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setLabelFor-int-" title="class or interface in android.view">setLabelFor</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setLayerPaint-android.graphics.Paint-" title="class or interface in android.view">setLayerPaint</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setLayerType-int-android.graphics.Paint-" title="class or interface in android.view">setLayerType</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setLayoutDirection-int-" title="class or interface in android.view">setLayoutDirection</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setLayoutParams-android.view.ViewGroup.LayoutParams-" title="class or interface in android.view">setLayoutParams</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setLeft-int-" title="class or interface in android.view">setLeft</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setLongClickable-boolean-" title="class or interface in android.view">setLongClickable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setMeasuredDimension-int-int-" title="class or interface in android.view">setMeasuredDimension</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setMinimumHeight-int-" title="class or interface in android.view">setMinimumHeight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setMinimumWidth-int-" title="class or interface in android.view">setMinimumWidth</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setNestedScrollingEnabled-boolean-" title="class or interface in android.view">setNestedScrollingEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setNextClusterForwardId-int-" title="class or interface in android.view">setNextClusterForwardId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setNextFocusDownId-int-" title="class or interface in android.view">setNextFocusDownId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setNextFocusForwardId-int-" title="class or interface in android.view">setNextFocusForwardId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setNextFocusLeftId-int-" title="class or interface in android.view">setNextFocusLeftId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setNextFocusRightId-int-" title="class or interface in android.view">setNextFocusRightId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setNextFocusUpId-int-" title="class or interface in android.view">setNextFocusUpId</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnApplyWindowInsetsListener-android.view.View.OnApplyWindowInsetsListener-" title="class or interface in android.view">setOnApplyWindowInsetsListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnCapturedPointerListener-android.view.View.OnCapturedPointerListener-" title="class or interface in android.view">setOnCapturedPointerListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnClickListener-android.view.View.OnClickListener-" title="class or interface in android.view">setOnClickListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnContextClickListener-android.view.View.OnContextClickListener-" title="class or interface in android.view">setOnContextClickListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnCreateContextMenuListener-android.view.View.OnCreateContextMenuListener-" title="class or interface in android.view">setOnCreateContextMenuListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnDragListener-android.view.View.OnDragListener-" title="class or interface in android.view">setOnDragListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnFocusChangeListener-android.view.View.OnFocusChangeListener-" title="class or interface in android.view">setOnFocusChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnGenericMotionListener-android.view.View.OnGenericMotionListener-" title="class or interface in android.view">setOnGenericMotionListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnHoverListener-android.view.View.OnHoverListener-" title="class or interface in android.view">setOnHoverListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnKeyListener-android.view.View.OnKeyListener-" title="class or interface in android.view">setOnKeyListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnScrollChangeListener-android.view.View.OnScrollChangeListener-" title="class or interface in android.view">setOnScrollChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnSystemUiVisibilityChangeListener-android.view.View.OnSystemUiVisibilityChangeListener-" title="class or interface in android.view">setOnSystemUiVisibilityChangeListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnTouchListener-android.view.View.OnTouchListener-" title="class or interface in android.view">setOnTouchListener</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOutlineProvider-android.view.ViewOutlineProvider-" title="class or interface in android.view">setOutlineProvider</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOverScrollMode-int-" title="class or interface in android.view">setOverScrollMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setPadding-int-int-int-int-" title="class or interface in android.view">setPadding</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setPaddingRelative-int-int-int-int-" title="class or interface in android.view">setPaddingRelative</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setPivotX-float-" title="class or interface in android.view">setPivotX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setPivotY-float-" title="class or interface in android.view">setPivotY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setPointerIcon-android.view.PointerIcon-" title="class or interface in android.view">setPointerIcon</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setPressed-boolean-" title="class or interface in android.view">setPressed</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setRevealOnFocusHint-boolean-" title="class or interface in android.view">setRevealOnFocusHint</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setRight-int-" title="class or interface in android.view">setRight</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setRotation-float-" title="class or interface in android.view">setRotation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setRotationX-float-" title="class or interface in android.view">setRotationX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setRotationY-float-" title="class or interface in android.view">setRotationY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setSaveEnabled-boolean-" title="class or interface in android.view">setSaveEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setSaveFromParentEnabled-boolean-" title="class or interface in android.view">setSaveFromParentEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScaleX-float-" title="class or interface in android.view">setScaleX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScaleY-float-" title="class or interface in android.view">setScaleY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollBarDefaultDelayBeforeFade-int-" title="class or interface in android.view">setScrollBarDefaultDelayBeforeFade</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollBarFadeDuration-int-" title="class or interface in android.view">setScrollBarFadeDuration</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollbarFadingEnabled-boolean-" title="class or interface in android.view">setScrollbarFadingEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollBarSize-int-" title="class or interface in android.view">setScrollBarSize</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollBarStyle-int-" title="class or interface in android.view">setScrollBarStyle</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollContainer-boolean-" title="class or interface in android.view">setScrollContainer</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollIndicators-int-" title="class or interface in android.view">setScrollIndicators</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollIndicators-int-int-" title="class or interface in android.view">setScrollIndicators</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollX-int-" title="class or interface in android.view">setScrollX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setScrollY-int-" title="class or interface in android.view">setScrollY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setSelected-boolean-" title="class or interface in android.view">setSelected</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setSoundEffectsEnabled-boolean-" title="class or interface in android.view">setSoundEffectsEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setStateListAnimator-android.animation.StateListAnimator-" title="class or interface in android.view">setStateListAnimator</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setSystemUiVisibility-int-" title="class or interface in android.view">setSystemUiVisibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTag-int-java.lang.Object-" title="class or interface in android.view">setTag</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTag-java.lang.Object-" title="class or interface in android.view">setTag</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTextAlignment-int-" title="class or interface in android.view">setTextAlignment</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTextDirection-int-" title="class or interface in android.view">setTextDirection</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTooltipText-java.lang.CharSequence-" title="class or interface in android.view">setTooltipText</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTop-int-" title="class or interface in android.view">setTop</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTouchDelegate-android.view.TouchDelegate-" title="class or interface in android.view">setTouchDelegate</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTransitionName-java.lang.String-" title="class or interface in android.view">setTransitionName</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTranslationX-float-" title="class or interface in android.view">setTranslationX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTranslationY-float-" title="class or interface in android.view">setTranslationY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setTranslationZ-float-" title="class or interface in android.view">setTranslationZ</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setVerticalFadingEdgeEnabled-boolean-" title="class or interface in android.view">setVerticalFadingEdgeEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setVerticalScrollBarEnabled-boolean-" title="class or interface in android.view">setVerticalScrollBarEnabled</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setVerticalScrollbarPosition-int-" title="class or interface in android.view">setVerticalScrollbarPosition</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setVisibility-int-" title="class or interface in android.view">setVisibility</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setWillNotCacheDrawing-boolean-" title="class or interface in android.view">setWillNotCacheDrawing</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setWillNotDraw-boolean-" title="class or interface in android.view">setWillNotDraw</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setX-float-" title="class or interface in android.view">setX</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setY-float-" title="class or interface in android.view">setY</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setZ-float-" title="class or interface in android.view">setZ</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#showContextMenu--" title="class or interface in android.view">showContextMenu</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#showContextMenu-float-float-" title="class or interface in android.view">showContextMenu</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#startActionMode-android.view.ActionMode.Callback-" title="class or interface in android.view">startActionMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#startActionMode-android.view.ActionMode.Callback-int-" title="class or interface in android.view">startActionMode</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#startAnimation-android.view.animation.Animation-" title="class or interface in android.view">startAnimation</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#startDrag-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-" title="class or interface in android.view">startDrag</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#startDragAndDrop-android.content.ClipData-android.view.View.DragShadowBuilder-java.lang.Object-int-" title="class or interface in android.view">startDragAndDrop</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#startNestedScroll-int-" title="class or interface in android.view">startNestedScroll</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#stopNestedScroll--" title="class or interface in android.view">stopNestedScroll</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#toString--" title="class or interface in android.view">toString</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#unscheduleDrawable-android.graphics.drawable.Drawable-" title="class or interface in android.view">unscheduleDrawable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#unscheduleDrawable-android.graphics.drawable.Drawable-java.lang.Runnable-" title="class or interface in android.view">unscheduleDrawable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#updateDragShadow-android.view.View.DragShadowBuilder-" title="class or interface in android.view">updateDragShadow</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#verifyDrawable-android.graphics.drawable.Drawable-" title="class or interface in android.view">verifyDrawable</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#willNotCacheDrawing--" title="class or interface in android.view">willNotCacheDrawing</a>, <a href="https://developer.android.com/reference/android/view/View.html?is-external=true#willNotDraw--" title="class or interface in android.view">willNotDraw</a></code></li>
</ul>
<ul class="blockList">
<li class="blockList"><a name="methods.inherited.from.class.java.lang.Object">
<!--   -->
</a>
<h3>Methods inherited from class&nbsp;java.lang.<a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true" title="class or interface in java.lang">Object</a></h3>
<code><a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#clone--" title="class or interface in java.lang">clone</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#equals-java.lang.Object-" title="class or interface in java.lang">equals</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#finalize--" title="class or interface in java.lang">finalize</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#getClass--" title="class or interface in java.lang">getClass</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#hashCode--" title="class or interface in java.lang">hashCode</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#notify--" title="class or interface in java.lang">notify</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#notifyAll--" title="class or interface in java.lang">notifyAll</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait--" title="class or interface in java.lang">wait</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait-long-" title="class or interface in java.lang">wait</a>, <a href="https://developer.android.com/reference/java/lang/Object.html?is-external=true#wait-long-int-" title="class or interface in java.lang">wait</a></code></li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
<div class="details">
<ul class="blockList">
<li class="blockList">
<!-- ============ FIELD DETAIL =========== -->
<ul class="blockList">
<li class="blockList"><a name="field.detail">
<!--   -->
</a>
<h3>Field Detail</h3>
<a name="ORIENTATION_USE_EXIF">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIENTATION_USE_EXIF</h4>
<pre>public static final&nbsp;int ORIENTATION_USE_EXIF</pre>
<div class="block">Attempt to use EXIF information on the image to rotate it. Works for external files only.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIENTATION_USE_EXIF">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ORIENTATION_0">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIENTATION_0</h4>
<pre>public static final&nbsp;int ORIENTATION_0</pre>
<div class="block">Display the image file in its native orientation.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIENTATION_0">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ORIENTATION_90">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIENTATION_90</h4>
<pre>public static final&nbsp;int ORIENTATION_90</pre>
<div class="block">Rotate the image 90 degrees clockwise.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIENTATION_90">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ORIENTATION_180">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIENTATION_180</h4>
<pre>public static final&nbsp;int ORIENTATION_180</pre>
<div class="block">Rotate the image 180 degrees.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIENTATION_180">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ORIENTATION_270">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIENTATION_270</h4>
<pre>public static final&nbsp;int ORIENTATION_270</pre>
<div class="block">Rotate the image 270 degrees clockwise.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIENTATION_270">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ZOOM_FOCUS_FIXED">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ZOOM_FOCUS_FIXED</h4>
<pre>public static final&nbsp;int ZOOM_FOCUS_FIXED</pre>
<div class="block">During zoom animation, keep the point of the image that was tapped in the same place, and scale the image around it.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ZOOM_FOCUS_FIXED">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ZOOM_FOCUS_CENTER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ZOOM_FOCUS_CENTER</h4>
<pre>public static final&nbsp;int ZOOM_FOCUS_CENTER</pre>
<div class="block">During zoom animation, move the point of the image that was tapped to the center of the screen.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ZOOM_FOCUS_CENTER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ZOOM_FOCUS_CENTER_IMMEDIATE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ZOOM_FOCUS_CENTER_IMMEDIATE</h4>
<pre>public static final&nbsp;int ZOOM_FOCUS_CENTER_IMMEDIATE</pre>
<div class="block">Zoom in to and center the tapped point immediately without animating.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ZOOM_FOCUS_CENTER_IMMEDIATE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="EASE_OUT_QUAD">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EASE_OUT_QUAD</h4>
<pre>public static final&nbsp;int EASE_OUT_QUAD</pre>
<div class="block">Quadratic ease out. Not recommended for scale animation, but good for panning.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.EASE_OUT_QUAD">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="EASE_IN_OUT_QUAD">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>EASE_IN_OUT_QUAD</h4>
<pre>public static final&nbsp;int EASE_IN_OUT_QUAD</pre>
<div class="block">Quadratic ease in and out.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.EASE_IN_OUT_QUAD">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PAN_LIMIT_INSIDE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PAN_LIMIT_INSIDE</h4>
<pre>public static final&nbsp;int PAN_LIMIT_INSIDE</pre>
<div class="block">Don't allow the image to be panned off screen. As much of the image as possible is always displayed, centered in the view when it is smaller. This is the best option for galleries.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.PAN_LIMIT_INSIDE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PAN_LIMIT_OUTSIDE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PAN_LIMIT_OUTSIDE</h4>
<pre>public static final&nbsp;int PAN_LIMIT_OUTSIDE</pre>
<div class="block">Allows the image to be panned until it is just off screen, but no further. The edge of the image will stop when it is flush with the screen edge.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.PAN_LIMIT_OUTSIDE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="PAN_LIMIT_CENTER">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>PAN_LIMIT_CENTER</h4>
<pre>public static final&nbsp;int PAN_LIMIT_CENTER</pre>
<div class="block">Allows the image to be panned until a corner reaches the center of the screen but no further. Useful when you want to pan any spot on the image to the exact center of the screen.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.PAN_LIMIT_CENTER">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SCALE_TYPE_CENTER_INSIDE">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SCALE_TYPE_CENTER_INSIDE</h4>
<pre>public static final&nbsp;int SCALE_TYPE_CENTER_INSIDE</pre>
<div class="block">Scale the image so that both dimensions of the image will be equal to or less than the corresponding dimension of the view. The image is then centered in the view. This is the default behaviour and best for galleries.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.SCALE_TYPE_CENTER_INSIDE">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SCALE_TYPE_CENTER_CROP">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SCALE_TYPE_CENTER_CROP</h4>
<pre>public static final&nbsp;int SCALE_TYPE_CENTER_CROP</pre>
<div class="block">Scale the image uniformly so that both dimensions of the image will be equal to or larger than the corresponding dimension of the view. The image is then centered in the view.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.SCALE_TYPE_CENTER_CROP">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SCALE_TYPE_CUSTOM">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SCALE_TYPE_CUSTOM</h4>
<pre>public static final&nbsp;int SCALE_TYPE_CUSTOM</pre>
<div class="block">Scale the image so that both dimensions of the image will be equal to or less than the maxScale and equal to or larger than minScale. The image is then centered in the view.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.SCALE_TYPE_CUSTOM">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="SCALE_TYPE_START">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SCALE_TYPE_START</h4>
<pre>public static final&nbsp;int SCALE_TYPE_START</pre>
<div class="block">Scale the image so that both dimensions of the image will be equal to or larger than the corresponding dimension of the view. The top left is shown.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.SCALE_TYPE_START">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ORIGIN_ANIM">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIGIN_ANIM</h4>
<pre>public static final&nbsp;int ORIGIN_ANIM</pre>
<div class="block">State change originated from animation.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIGIN_ANIM">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ORIGIN_TOUCH">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIGIN_TOUCH</h4>
<pre>public static final&nbsp;int ORIGIN_TOUCH</pre>
<div class="block">State change originated from touch gesture.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIGIN_TOUCH">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ORIGIN_FLING">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIGIN_FLING</h4>
<pre>public static final&nbsp;int ORIGIN_FLING</pre>
<div class="block">State change originated from a fling momentum anim.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIGIN_FLING">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="ORIGIN_DOUBLE_TAP_ZOOM">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>ORIGIN_DOUBLE_TAP_ZOOM</h4>
<pre>public static final&nbsp;int ORIGIN_DOUBLE_TAP_ZOOM</pre>
<div class="block">State change originated from a double tap zoom anim.</div>
<dl>
<dt><span class="seeLabel">See Also:</span></dt>
<dd><a href="../../../../constant-values.html#com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.ORIGIN_DOUBLE_TAP_ZOOM">Constant Field Values</a></dd>
</dl>
</li>
</ul>
<a name="TILE_SIZE_AUTO">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>TILE_SIZE_AUTO</h4>
<pre>public static&nbsp;int TILE_SIZE_AUTO</pre>
</li>
</ul>
</li>
</ul>
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<ul class="blockList">
<li class="blockList"><a name="constructor.detail">
<!--   -->
</a>
<h3>Constructor Detail</h3>
<a name="SubsamplingScaleImageView-android.content.Context-android.util.AttributeSet-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>SubsamplingScaleImageView</h4>
<pre>public&nbsp;SubsamplingScaleImageView(<a href="https://developer.android.com/reference/android/content/Context.html?is-external=true" title="class or interface in android.content">Context</a>&nbsp;context,
                                 <a href="https://developer.android.com/reference/android/util/AttributeSet.html?is-external=true" title="class or interface in android.util">AttributeSet</a>&nbsp;attr)</pre>
</li>
</ul>
<a name="SubsamplingScaleImageView-android.content.Context-">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>SubsamplingScaleImageView</h4>
<pre>public&nbsp;SubsamplingScaleImageView(<a href="https://developer.android.com/reference/android/content/Context.html?is-external=true" title="class or interface in android.content">Context</a>&nbsp;context)</pre>
</li>
</ul>
</li>
</ul>
<!-- ============ METHOD DETAIL ========== -->
<ul class="blockList">
<li class="blockList"><a name="method.detail">
<!--   -->
</a>
<h3>Method Detail</h3>
<a name="getPreferredBitmapConfig--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPreferredBitmapConfig</h4>
<pre>public static&nbsp;<a href="https://developer.android.com/reference/android/graphics/Bitmap.Config.html?is-external=true" title="class or interface in android.graphics">Bitmap.Config</a>&nbsp;getPreferredBitmapConfig()</pre>
<div class="block">Get the current preferred configuration for decoding bitmaps. <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageDecoder</code></a> and <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageRegionDecoder</code></a>
 instances can read this and use it when decoding images.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the preferred bitmap configuration, or null if none has been set.</dd>
</dl>
</li>
</ul>
<a name="setPreferredBitmapConfig-android.graphics.Bitmap.Config-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPreferredBitmapConfig</h4>
<pre>public static&nbsp;void&nbsp;setPreferredBitmapConfig(<a href="https://developer.android.com/reference/android/graphics/Bitmap.Config.html?is-external=true" title="class or interface in android.graphics">Bitmap.Config</a>&nbsp;preferredBitmapConfig)</pre>
<div class="block">Set a global preferred bitmap config shared by all view instances and applied to new instances
 initialised after the call is made. This is a hint only; the bundled <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageDecoder</code></a> and
 <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageRegionDecoder</code></a> classes all respect this (except when they were constructed with
 an instance-specific config) but custom decoder classes will not.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>preferredBitmapConfig</code> - the bitmap configuration to be used by future instances of the view. Pass null to restore the default.</dd>
</dl>
</li>
</ul>
<a name="setOrientation-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOrientation</h4>
<pre>public final&nbsp;void&nbsp;setOrientation(int&nbsp;orientation)</pre>
<div class="block">Sets the image orientation. It's best to call this before setting the image file or asset, because it may waste
 loading of tiles. However, this can be freely called at any time.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>orientation</code> - orientation to be set. See ORIENTATION_ static fields for valid values.</dd>
</dl>
</li>
</ul>
<a name="setImage-com.davemorrissey.labs.subscaleview.ImageSource-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setImage</h4>
<pre>public final&nbsp;void&nbsp;setImage(<a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;imageSource)</pre>
<div class="block">Set the image source from a bitmap, resource, asset, file or other URI.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>imageSource</code> - Image source.</dd>
</dl>
</li>
</ul>
<a name="setImage-com.davemorrissey.labs.subscaleview.ImageSource-com.davemorrissey.labs.subscaleview.ImageViewState-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setImage</h4>
<pre>public final&nbsp;void&nbsp;setImage(<a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;imageSource,
                           <a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview">ImageViewState</a>&nbsp;state)</pre>
<div class="block">Set the image source from a bitmap, resource, asset, file or other URI, starting with a given orientation
 setting, scale and center. This is the best method to use when you want scale and center to be restored
 after screen orientation change; it avoids any redundant loading of tiles in the wrong orientation.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>imageSource</code> - Image source.</dd>
<dd><code>state</code> - State to be restored. Nullable.</dd>
</dl>
</li>
</ul>
<a name="setImage-com.davemorrissey.labs.subscaleview.ImageSource-com.davemorrissey.labs.subscaleview.ImageSource-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setImage</h4>
<pre>public final&nbsp;void&nbsp;setImage(<a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;imageSource,
                           <a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;previewSource)</pre>
<div class="block">Set the image source from a bitmap, resource, asset, file or other URI, providing a preview image to be
 displayed until the full size image is loaded.

 You must declare the dimensions of the full size image by calling <a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html#dimensions-int-int-"><code>ImageSource.dimensions(int, int)</code></a>
 on the imageSource object. The preview source will be ignored if you don't provide dimensions,
 and if you provide a bitmap for the full size image.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>imageSource</code> - Image source. Dimensions must be declared.</dd>
<dd><code>previewSource</code> - Optional source for a preview image to be displayed and allow interaction while the full size image loads.</dd>
</dl>
</li>
</ul>
<a name="setImage-com.davemorrissey.labs.subscaleview.ImageSource-com.davemorrissey.labs.subscaleview.ImageSource-com.davemorrissey.labs.subscaleview.ImageViewState-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setImage</h4>
<pre>public final&nbsp;void&nbsp;setImage(<a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;imageSource,
                           <a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html" title="class in com.davemorrissey.labs.subscaleview">ImageSource</a>&nbsp;previewSource,
                           <a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview">ImageViewState</a>&nbsp;state)</pre>
<div class="block">Set the image source from a bitmap, resource, asset, file or other URI, providing a preview image to be
 displayed until the full size image is loaded, starting with a given orientation setting, scale and center.
 This is the best method to use when you want scale and center to be restored after screen orientation change;
 it avoids any redundant loading of tiles in the wrong orientation.

 You must declare the dimensions of the full size image by calling <a href="../../../../com/davemorrissey/labs/subscaleview/ImageSource.html#dimensions-int-int-"><code>ImageSource.dimensions(int, int)</code></a>
 on the imageSource object. The preview source will be ignored if you don't provide dimensions,
 and if you provide a bitmap for the full size image.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>imageSource</code> - Image source. Dimensions must be declared.</dd>
<dd><code>previewSource</code> - Optional source for a preview image to be displayed and allow interaction while the full size image loads.</dd>
<dd><code>state</code> - State to be restored. Nullable.</dd>
</dl>
</li>
</ul>
<a name="onSizeChanged-int-int-int-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onSizeChanged</h4>
<pre>protected&nbsp;void&nbsp;onSizeChanged(int&nbsp;w,
                             int&nbsp;h,
                             int&nbsp;oldw,
                             int&nbsp;oldh)</pre>
<div class="block">On resize, preserve center and scale. Various behaviours are possible, override this method to use another.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onSizeChanged-int-int-int-int-" title="class or interface in android.view">onSizeChanged</a></code>&nbsp;in class&nbsp;<code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></code></dd>
</dl>
</li>
</ul>
<a name="onMeasure-int-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onMeasure</h4>
<pre>protected&nbsp;void&nbsp;onMeasure(int&nbsp;widthMeasureSpec,
                         int&nbsp;heightMeasureSpec)</pre>
<div class="block">Measures the width and height of the view, preserving the aspect ratio of the image displayed if wrap_content is
 used. The image will scale within this box, not resizing the view as it is zoomed.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onMeasure-int-int-" title="class or interface in android.view">onMeasure</a></code>&nbsp;in class&nbsp;<code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></code></dd>
</dl>
</li>
</ul>
<a name="onTouchEvent-android.view.MotionEvent-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onTouchEvent</h4>
<pre>public&nbsp;boolean&nbsp;onTouchEvent(<a href="https://developer.android.com/reference/android/support.annotation.NonNull.html?is-external=true" title="class or interface in android">@NonNull</a>
                            <a href="https://developer.android.com/reference/android/view/MotionEvent.html?is-external=true" title="class or interface in android.view">MotionEvent</a>&nbsp;event)</pre>
<div class="block">Handle touch events. One finger pans, and two finger pinch and zoom plus panning.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onTouchEvent-android.view.MotionEvent-" title="class or interface in android.view">onTouchEvent</a></code>&nbsp;in class&nbsp;<code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></code></dd>
</dl>
</li>
</ul>
<a name="onDraw-android.graphics.Canvas-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onDraw</h4>
<pre>protected&nbsp;void&nbsp;onDraw(<a href="https://developer.android.com/reference/android/graphics/Canvas.html?is-external=true" title="class or interface in android.graphics">Canvas</a>&nbsp;canvas)</pre>
<div class="block">Draw method should not be called until the view has dimensions so the first calls are used as triggers to calculate
 the scaling and tiling required. Once the view is setup, tiles are displayed as they are loaded.</div>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true#onDraw-android.graphics.Canvas-" title="class or interface in android.view">onDraw</a></code>&nbsp;in class&nbsp;<code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></code></dd>
</dl>
</li>
</ul>
<a name="setMaxTileSize-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMaxTileSize</h4>
<pre>public&nbsp;void&nbsp;setMaxTileSize(int&nbsp;maxPixels)</pre>
<div class="block">By default the View automatically calculates the optimal tile size. Set this to override this, and force an upper limit to the dimensions of the generated tiles. Passing <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#TILE_SIZE_AUTO"><code>TILE_SIZE_AUTO</code></a> will re-enable the default behaviour.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>maxPixels</code> - Maximum tile size X and Y in pixels.</dd>
</dl>
</li>
</ul>
<a name="setMaxTileSize-int-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMaxTileSize</h4>
<pre>public&nbsp;void&nbsp;setMaxTileSize(int&nbsp;maxPixelsX,
                           int&nbsp;maxPixelsY)</pre>
<div class="block">By default the View automatically calculates the optimal tile size. Set this to override this, and force an upper limit to the dimensions of the generated tiles. Passing <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#TILE_SIZE_AUTO"><code>TILE_SIZE_AUTO</code></a> will re-enable the default behaviour.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>maxPixelsX</code> - Maximum tile width.</dd>
<dd><code>maxPixelsY</code> - Maximum tile height.</dd>
</dl>
</li>
</ul>
<a name="recycle--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>recycle</h4>
<pre>public&nbsp;void&nbsp;recycle()</pre>
<div class="block">Releases all resources the view is using and resets the state, nulling any fields that use significant memory.
 After you have called this method, the view can be re-used by setting a new image. Settings are remembered
 but state (scale and center) is forgotten. You can restore these yourself if required.</div>
</li>
</ul>
<a name="viewToFileRect-android.graphics.Rect-android.graphics.Rect-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>viewToFileRect</h4>
<pre>public&nbsp;void&nbsp;viewToFileRect(<a href="https://developer.android.com/reference/android/graphics/Rect.html?is-external=true" title="class or interface in android.graphics">Rect</a>&nbsp;vRect,
                           <a href="https://developer.android.com/reference/android/graphics/Rect.html?is-external=true" title="class or interface in android.graphics">Rect</a>&nbsp;fRect)</pre>
<div class="block">Converts a rectangle within the view to the corresponding rectangle from the source file, taking
 into account the current scale, translation, orientation and clipped region. This can be used
 to decode a bitmap from the source file.

 This method will only work when the image has fully initialised, after <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#isReady--"><code>isReady()</code></a> returns
 true. It is not guaranteed to work with preloaded bitmaps.

 The result is written to the fRect argument. Re-use a single instance for efficiency.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vRect</code> - rectangle representing the view area to interpret.</dd>
<dd><code>fRect</code> - rectangle instance to which the result will be written. Re-use for efficiency.</dd>
</dl>
</li>
</ul>
<a name="visibleFileRect-android.graphics.Rect-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>visibleFileRect</h4>
<pre>public&nbsp;void&nbsp;visibleFileRect(<a href="https://developer.android.com/reference/android/graphics/Rect.html?is-external=true" title="class or interface in android.graphics">Rect</a>&nbsp;fRect)</pre>
<div class="block">Find the area of the source file that is currently visible on screen, taking into account the
 current scale, translation, orientation and clipped region. This is a convenience method; see
 <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#viewToFileRect-android.graphics.Rect-android.graphics.Rect-"><code>viewToFileRect(Rect, Rect)</code></a>.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>fRect</code> - rectangle instance to which the result will be written. Re-use for efficiency.</dd>
</dl>
</li>
</ul>
<a name="viewToSourceCoord-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>viewToSourceCoord</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;viewToSourceCoord(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;vxy)</pre>
<div class="block">Convert screen coordinate to source coordinate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vxy</code> - view X/Y coordinate.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a coordinate representing the corresponding source coordinate.</dd>
</dl>
</li>
</ul>
<a name="viewToSourceCoord-float-float-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>viewToSourceCoord</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;viewToSourceCoord(float&nbsp;vx,
                                      float&nbsp;vy)</pre>
<div class="block">Convert screen coordinate to source coordinate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vx</code> - view X coordinate.</dd>
<dd><code>vy</code> - view Y coordinate.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>a coordinate representing the corresponding source coordinate.</dd>
</dl>
</li>
</ul>
<a name="viewToSourceCoord-android.graphics.PointF-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>viewToSourceCoord</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;viewToSourceCoord(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;vxy,
                                      <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sTarget)</pre>
<div class="block">Convert screen coordinate to source coordinate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vxy</code> - view coordinates to convert.</dd>
<dd><code>sTarget</code> - target object for result. The same instance is also returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>source coordinates. This is the same instance passed to the sTarget param.</dd>
</dl>
</li>
</ul>
<a name="viewToSourceCoord-float-float-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>viewToSourceCoord</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;viewToSourceCoord(float&nbsp;vx,
                                      float&nbsp;vy,
                                      <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sTarget)</pre>
<div class="block">Convert screen coordinate to source coordinate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vx</code> - view X coordinate.</dd>
<dd><code>vy</code> - view Y coordinate.</dd>
<dd><code>sTarget</code> - target object for result. The same instance is also returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>source coordinates. This is the same instance passed to the sTarget param.</dd>
</dl>
</li>
</ul>
<a name="sourceToViewCoord-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sourceToViewCoord</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sourceToViewCoord(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sxy)</pre>
<div class="block">Convert source coordinate to view coordinate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sxy</code> - source coordinates to convert.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>view coordinates.</dd>
</dl>
</li>
</ul>
<a name="sourceToViewCoord-float-float-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sourceToViewCoord</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sourceToViewCoord(float&nbsp;sx,
                                      float&nbsp;sy)</pre>
<div class="block">Convert source coordinate to view coordinate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sx</code> - source X coordinate.</dd>
<dd><code>sy</code> - source Y coordinate.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>view coordinates.</dd>
</dl>
</li>
</ul>
<a name="sourceToViewCoord-android.graphics.PointF-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sourceToViewCoord</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sourceToViewCoord(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sxy,
                                      <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;vTarget)</pre>
<div class="block">Convert source coordinate to view coordinate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sxy</code> - source coordinates to convert.</dd>
<dd><code>vTarget</code> - target object for result. The same instance is also returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>view coordinates. This is the same instance passed to the vTarget param.</dd>
</dl>
</li>
</ul>
<a name="sourceToViewCoord-float-float-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>sourceToViewCoord</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sourceToViewCoord(float&nbsp;sx,
                                      float&nbsp;sy,
                                      <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;vTarget)</pre>
<div class="block">Convert source coordinate to view coordinate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sx</code> - source X coordinate.</dd>
<dd><code>sy</code> - source Y coordinate.</dd>
<dd><code>vTarget</code> - target object for result. The same instance is also returned.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>view coordinates. This is the same instance passed to the vTarget param.</dd>
</dl>
</li>
</ul>
<a name="setRegionDecoderClass-java.lang.Class-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRegionDecoderClass</h4>
<pre>public final&nbsp;void&nbsp;setRegionDecoderClass(<a href="https://developer.android.com/reference/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;? extends <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">ImageRegionDecoder</a>&gt;&nbsp;regionDecoderClass)</pre>
<div class="block">Swap the default region decoder implementation for one of your own. You must do this before setting the image file or
 asset, and you cannot use a custom decoder when using layout XML to set an asset name. Your class must have a
 public default constructor.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>regionDecoderClass</code> - The <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageRegionDecoder</code></a> implementation to use.</dd>
</dl>
</li>
</ul>
<a name="setRegionDecoderFactory-com.davemorrissey.labs.subscaleview.decoder.DecoderFactory-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setRegionDecoderFactory</h4>
<pre>public final&nbsp;void&nbsp;setRegionDecoderFactory(<a href="../../../../com/davemorrissey/labs/subscaleview/decoder/DecoderFactory.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">DecoderFactory</a>&lt;? extends <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">ImageRegionDecoder</a>&gt;&nbsp;regionDecoderFactory)</pre>
<div class="block">Swap the default region decoder implementation for one of your own. You must do this before setting the image file or
 asset, and you cannot use a custom decoder when using layout XML to set an asset name.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>regionDecoderFactory</code> - The <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/DecoderFactory.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>DecoderFactory</code></a> implementation that produces <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageRegionDecoder</code></a>
                             instances.</dd>
</dl>
</li>
</ul>
<a name="setBitmapDecoderClass-java.lang.Class-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBitmapDecoderClass</h4>
<pre>public final&nbsp;void&nbsp;setBitmapDecoderClass(<a href="https://developer.android.com/reference/java/lang/Class.html?is-external=true" title="class or interface in java.lang">Class</a>&lt;? extends <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">ImageDecoder</a>&gt;&nbsp;bitmapDecoderClass)</pre>
<div class="block">Swap the default bitmap decoder implementation for one of your own. You must do this before setting the image file or
 asset, and you cannot use a custom decoder when using layout XML to set an asset name. Your class must have a
 public default constructor.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>bitmapDecoderClass</code> - The <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageDecoder</code></a> implementation to use.</dd>
</dl>
</li>
</ul>
<a name="setBitmapDecoderFactory-com.davemorrissey.labs.subscaleview.decoder.DecoderFactory-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setBitmapDecoderFactory</h4>
<pre>public final&nbsp;void&nbsp;setBitmapDecoderFactory(<a href="../../../../com/davemorrissey/labs/subscaleview/decoder/DecoderFactory.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">DecoderFactory</a>&lt;? extends <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder">ImageDecoder</a>&gt;&nbsp;bitmapDecoderFactory)</pre>
<div class="block">Swap the default bitmap decoder implementation for one of your own. You must do this before setting the image file or
 asset, and you cannot use a custom decoder when using layout XML to set an asset name.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>bitmapDecoderFactory</code> - The <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/DecoderFactory.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>DecoderFactory</code></a> implementation that produces <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageDecoder</code></a> instances.</dd>
</dl>
</li>
</ul>
<a name="getPanRemaining-android.graphics.RectF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getPanRemaining</h4>
<pre>public final&nbsp;void&nbsp;getPanRemaining(<a href="https://developer.android.com/reference/android/graphics/RectF.html?is-external=true" title="class or interface in android.graphics">RectF</a>&nbsp;vTarget)</pre>
<div class="block">Calculate how much further the image can be panned in each direction. The results are set on
 the supplied <a href="https://developer.android.com/reference/android/graphics/RectF.html?is-external=true" title="class or interface in android.graphics"><code>RectF</code></a> and expressed as screen pixels. For example, if the image cannot be
 panned any further towards the left, the value of <a href="https://developer.android.com/reference/android/graphics/RectF.html?is-external=true#left" title="class or interface in android.graphics"><code>RectF.left</code></a> will be set to 0.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>vTarget</code> - target object for results. Re-use for efficiency.</dd>
</dl>
</li>
</ul>
<a name="setPanLimit-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPanLimit</h4>
<pre>public final&nbsp;void&nbsp;setPanLimit(int&nbsp;panLimit)</pre>
<div class="block">Set the pan limiting style. See static fields. Normally <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#PAN_LIMIT_INSIDE"><code>PAN_LIMIT_INSIDE</code></a> is best, for image galleries.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>panLimit</code> - a pan limit constant. See static fields.</dd>
</dl>
</li>
</ul>
<a name="setMinimumScaleType-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMinimumScaleType</h4>
<pre>public final&nbsp;void&nbsp;setMinimumScaleType(int&nbsp;scaleType)</pre>
<div class="block">Set the minimum scale type. See static fields. Normally <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#SCALE_TYPE_CENTER_INSIDE"><code>SCALE_TYPE_CENTER_INSIDE</code></a> is best, for image galleries.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scaleType</code> - a scale type constant. See static fields.</dd>
</dl>
</li>
</ul>
<a name="setMaxScale-float-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMaxScale</h4>
<pre>public final&nbsp;void&nbsp;setMaxScale(float&nbsp;maxScale)</pre>
<div class="block">Set the maximum scale allowed. A value of 1 means 1:1 pixels at maximum scale. You may wish to set this according
 to screen density - on a retina screen, 1:1 may still be too small. Consider using <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMinimumDpi-int-"><code>setMinimumDpi(int)</code></a>,
 which is density aware.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>maxScale</code> - maximum scale expressed as a source/view pixels ratio.</dd>
</dl>
</li>
</ul>
<a name="setMinScale-float-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMinScale</h4>
<pre>public final&nbsp;void&nbsp;setMinScale(float&nbsp;minScale)</pre>
<div class="block">Set the minimum scale allowed. A value of 1 means 1:1 pixels at minimum scale. You may wish to set this according
 to screen density. Consider using <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMaximumDpi-int-"><code>setMaximumDpi(int)</code></a>, which is density aware.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>minScale</code> - minimum scale expressed as a source/view pixels ratio.</dd>
</dl>
</li>
</ul>
<a name="setMinimumDpi-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMinimumDpi</h4>
<pre>public final&nbsp;void&nbsp;setMinimumDpi(int&nbsp;dpi)</pre>
<div class="block">This is a screen density aware alternative to <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMaxScale-float-"><code>setMaxScale(float)</code></a>; it allows you to express the maximum
 allowed scale in terms of the minimum pixel density. This avoids the problem of 1:1 scale still being
 too small on a high density screen. A sensible starting point is 160 - the default used by this view.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>dpi</code> - Source image pixel density at maximum zoom.</dd>
</dl>
</li>
</ul>
<a name="setMaximumDpi-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMaximumDpi</h4>
<pre>public final&nbsp;void&nbsp;setMaximumDpi(int&nbsp;dpi)</pre>
<div class="block">This is a screen density aware alternative to <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setMinScale-float-"><code>setMinScale(float)</code></a>; it allows you to express the minimum
 allowed scale in terms of the maximum pixel density.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>dpi</code> - Source image pixel density at minimum zoom.</dd>
</dl>
</li>
</ul>
<a name="getMaxScale--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMaxScale</h4>
<pre>public&nbsp;float&nbsp;getMaxScale()</pre>
<div class="block">Returns the maximum allowed scale.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the maximum scale as a source/view pixels ratio.</dd>
</dl>
</li>
</ul>
<a name="getMinScale--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getMinScale</h4>
<pre>public final&nbsp;float&nbsp;getMinScale()</pre>
<div class="block">Returns the minimum allowed scale.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the minimum scale as a source/view pixels ratio.</dd>
</dl>
</li>
</ul>
<a name="setMinimumTileDpi-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setMinimumTileDpi</h4>
<pre>public&nbsp;void&nbsp;setMinimumTileDpi(int&nbsp;minimumTileDpi)</pre>
<div class="block">By default, image tiles are at least as high resolution as the screen. For a retina screen this may not be
 necessary, and may increase the likelihood of an OutOfMemoryError. This method sets a DPI at which higher
 resolution tiles should be loaded. Using a lower number will on average use less memory but result in a lower
 quality image. 160-240dpi will usually be enough. This should be called before setting the image source,
 because it affects which tiles get loaded. When using an untiled source image this method has no effect.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>minimumTileDpi</code> - Tile loading threshold.</dd>
</dl>
</li>
</ul>
<a name="getCenter--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getCenter</h4>
<pre>public final&nbsp;<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;getCenter()</pre>
<div class="block">Returns the source point at the center of the view.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the source coordinates current at the center of the view.</dd>
</dl>
</li>
</ul>
<a name="getScale--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getScale</h4>
<pre>public final&nbsp;float&nbsp;getScale()</pre>
<div class="block">Returns the current scale value.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the current scale as a source/view pixels ratio.</dd>
</dl>
</li>
</ul>
<a name="setScaleAndCenter-float-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setScaleAndCenter</h4>
<pre>public final&nbsp;void&nbsp;setScaleAndCenter(float&nbsp;scale,
                                    <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sCenter)</pre>
<div class="block">Externally change the scale and translation of the source image. This may be used with getCenter() and getScale()
 to restore the scale and zoom after a screen rotate.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scale</code> - New scale to set.</dd>
<dd><code>sCenter</code> - New source image coordinate to center on the screen, subject to boundaries.</dd>
</dl>
</li>
</ul>
<a name="resetScaleAndCenter--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>resetScaleAndCenter</h4>
<pre>public final&nbsp;void&nbsp;resetScaleAndCenter()</pre>
<div class="block">Fully zoom out and return the image to the middle of the screen. This might be useful if you have a view pager
 and want images to be reset when the user has moved to another page.</div>
</li>
</ul>
<a name="isReady--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isReady</h4>
<pre>public final&nbsp;boolean&nbsp;isReady()</pre>
<div class="block">Call to find whether the view is initialised, has dimensions, and will display an image on
 the next draw. If a preview has been provided, it may be the preview that will be displayed
 and the full size image may still be loading. If no preview was provided, this is called once
 the base layer tiles of the full size image are loaded.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>true if the view is ready to display an image and accept touch gestures.</dd>
</dl>
</li>
</ul>
<a name="onReady--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onReady</h4>
<pre>protected&nbsp;void&nbsp;onReady()</pre>
<div class="block">Called once when the view is initialised, has dimensions, and will display an image on the
 next draw. This is triggered at the same time as <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnImageEventListener.html#onReady--"><code>SubsamplingScaleImageView.OnImageEventListener.onReady()</code></a> but
 allows a subclass to receive this event without using a listener.</div>
</li>
</ul>
<a name="isImageLoaded--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isImageLoaded</h4>
<pre>public final&nbsp;boolean&nbsp;isImageLoaded()</pre>
<div class="block">Call to find whether the main image (base layer tiles where relevant) have been loaded. Before
 this event the view is blank unless a preview was provided.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>true if the main image (not the preview) has been loaded and is ready to display.</dd>
</dl>
</li>
</ul>
<a name="onImageLoaded--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>onImageLoaded</h4>
<pre>protected&nbsp;void&nbsp;onImageLoaded()</pre>
<div class="block">Called once when the full size image or its base layer tiles have been loaded.</div>
</li>
</ul>
<a name="getSWidth--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSWidth</h4>
<pre>public final&nbsp;int&nbsp;getSWidth()</pre>
<div class="block">Get source width, ignoring orientation. If <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getOrientation--"><code>getOrientation()</code></a> returns 90 or 270, you can use <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getSHeight--"><code>getSHeight()</code></a>
 for the apparent width.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the source image width in pixels.</dd>
</dl>
</li>
</ul>
<a name="getSHeight--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getSHeight</h4>
<pre>public final&nbsp;int&nbsp;getSHeight()</pre>
<div class="block">Get source height, ignoring orientation. If <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getOrientation--"><code>getOrientation()</code></a> returns 90 or 270, you can use <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getSWidth--"><code>getSWidth()</code></a>
 for the apparent height.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the source image height in pixels.</dd>
</dl>
</li>
</ul>
<a name="getOrientation--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getOrientation</h4>
<pre>public final&nbsp;int&nbsp;getOrientation()</pre>
<div class="block">Returns the orientation setting. This can return <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#ORIENTATION_USE_EXIF"><code>ORIENTATION_USE_EXIF</code></a>, in which case it doesn't tell you
 the applied orientation of the image. For that, use <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#getAppliedOrientation--"><code>getAppliedOrientation()</code></a>.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the orientation setting. See static fields.</dd>
</dl>
</li>
</ul>
<a name="getAppliedOrientation--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getAppliedOrientation</h4>
<pre>public final&nbsp;int&nbsp;getAppliedOrientation()</pre>
<div class="block">Returns the actual orientation of the image relative to the source file. This will be based on the source file's
 EXIF orientation if you're using ORIENTATION_USE_EXIF. Values are 0, 90, 180, 270.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>the orientation applied after EXIF information has been extracted. See static fields.</dd>
</dl>
</li>
</ul>
<a name="getState--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>getState</h4>
<pre>public final&nbsp;<a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview">ImageViewState</a>&nbsp;getState()</pre>
<div class="block">Get the current state of the view (scale, center, orientation) for restoration after rotate. Will return null if
 the view is not ready.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>an <a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview"><code>ImageViewState</code></a> instance representing the current position of the image. null if the view isn't ready.</dd>
</dl>
</li>
</ul>
<a name="isZoomEnabled--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isZoomEnabled</h4>
<pre>public final&nbsp;boolean&nbsp;isZoomEnabled()</pre>
<div class="block">Returns true if zoom gesture detection is enabled.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>true if zoom gesture detection is enabled.</dd>
</dl>
</li>
</ul>
<a name="setZoomEnabled-boolean-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setZoomEnabled</h4>
<pre>public final&nbsp;void&nbsp;setZoomEnabled(boolean&nbsp;zoomEnabled)</pre>
<div class="block">Enable or disable zoom gesture detection. Disabling zoom locks the the current scale.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>zoomEnabled</code> - true to enable zoom gestures, false to disable.</dd>
</dl>
</li>
</ul>
<a name="isQuickScaleEnabled--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isQuickScaleEnabled</h4>
<pre>public final&nbsp;boolean&nbsp;isQuickScaleEnabled()</pre>
<div class="block">Returns true if double tap &amp; swipe to zoom is enabled.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>true if double tap &amp; swipe to zoom is enabled.</dd>
</dl>
</li>
</ul>
<a name="setQuickScaleEnabled-boolean-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setQuickScaleEnabled</h4>
<pre>public final&nbsp;void&nbsp;setQuickScaleEnabled(boolean&nbsp;quickScaleEnabled)</pre>
<div class="block">Enable or disable double tap &amp; swipe to zoom.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>quickScaleEnabled</code> - true to enable quick scale, false to disable.</dd>
</dl>
</li>
</ul>
<a name="isPanEnabled--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>isPanEnabled</h4>
<pre>public final&nbsp;boolean&nbsp;isPanEnabled()</pre>
<div class="block">Returns true if pan gesture detection is enabled.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>true if pan gesture detection is enabled.</dd>
</dl>
</li>
</ul>
<a name="setPanEnabled-boolean-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setPanEnabled</h4>
<pre>public final&nbsp;void&nbsp;setPanEnabled(boolean&nbsp;panEnabled)</pre>
<div class="block">Enable or disable pan gesture detection. Disabling pan causes the image to be centered. Pan
 can still be changed from code.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>panEnabled</code> - true to enable panning, false to disable.</dd>
</dl>
</li>
</ul>
<a name="setTileBackgroundColor-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setTileBackgroundColor</h4>
<pre>public final&nbsp;void&nbsp;setTileBackgroundColor(int&nbsp;tileBgColor)</pre>
<div class="block">Set a solid color to render behind tiles, useful for displaying transparent PNGs.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>tileBgColor</code> - Background color for tiles.</dd>
</dl>
</li>
</ul>
<a name="setDoubleTapZoomScale-float-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDoubleTapZoomScale</h4>
<pre>public final&nbsp;void&nbsp;setDoubleTapZoomScale(float&nbsp;doubleTapZoomScale)</pre>
<div class="block">Set the scale the image will zoom in to when double tapped. This also the scale point where a double tap is interpreted
 as a zoom out gesture - if the scale is greater than 90% of this value, a double tap zooms out. Avoid using values
 greater than the max zoom.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>doubleTapZoomScale</code> - New value for double tap gesture zoom scale.</dd>
</dl>
</li>
</ul>
<a name="setDoubleTapZoomDpi-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDoubleTapZoomDpi</h4>
<pre>public final&nbsp;void&nbsp;setDoubleTapZoomDpi(int&nbsp;dpi)</pre>
<div class="block">A density aware alternative to <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html#setDoubleTapZoomScale-float-"><code>setDoubleTapZoomScale(float)</code></a>; this allows you to express the scale the
 image will zoom in to when double tapped in terms of the image pixel density. Values lower than the max scale will
 be ignored. A sensible starting point is 160 - the default used by this view.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>dpi</code> - New value for double tap gesture zoom scale.</dd>
</dl>
</li>
</ul>
<a name="setDoubleTapZoomStyle-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDoubleTapZoomStyle</h4>
<pre>public final&nbsp;void&nbsp;setDoubleTapZoomStyle(int&nbsp;doubleTapZoomStyle)</pre>
<div class="block">Set the type of zoom animation to be used for double taps. See static fields.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>doubleTapZoomStyle</code> - New value for zoom style.</dd>
</dl>
</li>
</ul>
<a name="setDoubleTapZoomDuration-int-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDoubleTapZoomDuration</h4>
<pre>public final&nbsp;void&nbsp;setDoubleTapZoomDuration(int&nbsp;durationMs)</pre>
<div class="block">Set the duration of the double tap zoom animation.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>durationMs</code> - Duration in milliseconds.</dd>
</dl>
</li>
</ul>
<a name="setExecutor-java.util.concurrent.Executor-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setExecutor</h4>
<pre>public&nbsp;void&nbsp;setExecutor(<a href="https://developer.android.com/reference/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent">Executor</a>&nbsp;executor)</pre>
<div class="block"><p>
 Provide an <a href="https://developer.android.com/reference/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent"><code>Executor</code></a> to be used for loading images. By default, <a href="https://developer.android.com/reference/android/os/AsyncTask.html?is-external=true#THREAD_POOL_EXECUTOR" title="class or interface in android.os"><code>AsyncTask.THREAD_POOL_EXECUTOR</code></a>
 is used to minimise contention with other background work the app is doing. You can also choose
 to use <a href="https://developer.android.com/reference/android/os/AsyncTask.html?is-external=true#SERIAL_EXECUTOR" title="class or interface in android.os"><code>AsyncTask.SERIAL_EXECUTOR</code></a> if you want to limit concurrent background tasks.
 Alternatively you can supply an <a href="https://developer.android.com/reference/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent"><code>Executor</code></a> of your own to avoid any contention. It is
 strongly recommended to use a single executor instance for the life of your application, not
 one per view instance.
 </p><p>
 <b>Warning:</b> If you are using a custom implementation of <a href="../../../../com/davemorrissey/labs/subscaleview/decoder/ImageRegionDecoder.html" title="interface in com.davemorrissey.labs.subscaleview.decoder"><code>ImageRegionDecoder</code></a>, and you
 supply an executor with more than one thread, you must make sure your implementation supports
 multi-threaded bitmap decoding or has appropriate internal synchronization. From SDK 21, Android's
 <a href="https://developer.android.com/reference/android/graphics/BitmapRegionDecoder.html?is-external=true" title="class or interface in android.graphics"><code>BitmapRegionDecoder</code></a> uses an internal lock so it is thread safe but
 there is no advantage to using multiple threads.
 </p></div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>executor</code> - an <a href="https://developer.android.com/reference/java/util/concurrent/Executor.html?is-external=true" title="class or interface in java.util.concurrent"><code>Executor</code></a> for image loading.</dd>
</dl>
</li>
</ul>
<a name="setEagerLoadingEnabled-boolean-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setEagerLoadingEnabled</h4>
<pre>public&nbsp;void&nbsp;setEagerLoadingEnabled(boolean&nbsp;eagerLoadingEnabled)</pre>
<div class="block">Enable or disable eager loading of tiles that appear on screen during gestures or animations,
 while the gesture or animation is still in progress. By default this is enabled to improve
 responsiveness, but it can result in tiles being loaded and discarded more rapidly than
 necessary and reduce the animation frame rate on old/cheap devices. Disable this on older
 devices if you see poor performance. Tiles will then be loaded only when gestures and animations
 are completed.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>eagerLoadingEnabled</code> - true to enable loading during gestures, false to delay loading until gestures end</dd>
</dl>
</li>
</ul>
<a name="setDebug-boolean-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setDebug</h4>
<pre>public final&nbsp;void&nbsp;setDebug(boolean&nbsp;debug)</pre>
<div class="block">Enables visual debugging, showing tile boundaries and sizes.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>debug</code> - true to enable debugging, false to disable.</dd>
</dl>
</li>
</ul>
<a name="hasImage--">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>hasImage</h4>
<pre>public&nbsp;boolean&nbsp;hasImage()</pre>
<div class="block">Check if an image has been set. The image may not have been loaded and displayed yet.</div>
<dl>
<dt><span class="returnLabel">Returns:</span></dt>
<dd>If an image is currently set.</dd>
</dl>
</li>
</ul>
<a name="setOnLongClickListener-android.view.View.OnLongClickListener-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOnLongClickListener</h4>
<pre>public&nbsp;void&nbsp;setOnLongClickListener(<a href="https://developer.android.com/reference/android/view/View.OnLongClickListener.html?is-external=true" title="class or interface in android.view">View.OnLongClickListener</a>&nbsp;onLongClickListener)</pre>
<dl>
<dt><span class="overrideSpecifyLabel">Overrides:</span></dt>
<dd><code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true#setOnLongClickListener-android.view.View.OnLongClickListener-" title="class or interface in android.view">setOnLongClickListener</a></code>&nbsp;in class&nbsp;<code><a href="https://developer.android.com/reference/android/view/View.html?is-external=true" title="class or interface in android.view">View</a></code></dd>
</dl>
</li>
</ul>
<a name="setOnImageEventListener-com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.OnImageEventListener-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOnImageEventListener</h4>
<pre>public&nbsp;void&nbsp;setOnImageEventListener(<a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnImageEventListener.html" title="interface in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.OnImageEventListener</a>&nbsp;onImageEventListener)</pre>
<div class="block">Add a listener allowing notification of load and error events. Extend <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.DefaultOnImageEventListener.html" title="class in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.DefaultOnImageEventListener</code></a>
 to simplify implementation.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>onImageEventListener</code> - an <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnImageEventListener.html" title="interface in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.OnImageEventListener</code></a> instance.</dd>
</dl>
</li>
</ul>
<a name="setOnStateChangedListener-com.davemorrissey.labs.subscaleview.SubsamplingScaleImageView.OnStateChangedListener-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>setOnStateChangedListener</h4>
<pre>public&nbsp;void&nbsp;setOnStateChangedListener(<a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnStateChangedListener.html" title="interface in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.OnStateChangedListener</a>&nbsp;onStateChangedListener)</pre>
<div class="block">Add a listener for pan and zoom events. Extend <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.DefaultOnStateChangedListener.html" title="class in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.DefaultOnStateChangedListener</code></a> to simplify
 implementation.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>onStateChangedListener</code> - an <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.OnStateChangedListener.html" title="interface in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.OnStateChangedListener</code></a> instance.</dd>
</dl>
</li>
</ul>
<a name="animateCenter-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>animateCenter</h4>
<pre>public&nbsp;<a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.AnimationBuilder</a>&nbsp;animateCenter(<a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sCenter)</pre>
<div class="block">Creates a panning animation builder, that when started will animate the image to place the given coordinates of
 the image in the center of the screen. If doing this would move the image beyond the edges of the screen, the
 image is instead animated to move the center point as near to the center of the screen as is allowed - it's
 guaranteed to be on screen.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>sCenter</code> - Target center point</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.AnimationBuilder</code></a> instance. Call <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html#start--"><code>SubsamplingScaleImageView.AnimationBuilder.start()</code></a> to start the anim.</dd>
</dl>
</li>
</ul>
<a name="animateScale-float-">
<!--   -->
</a>
<ul class="blockList">
<li class="blockList">
<h4>animateScale</h4>
<pre>public&nbsp;<a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.AnimationBuilder</a>&nbsp;animateScale(float&nbsp;scale)</pre>
<div class="block">Creates a scale animation builder, that when started will animate a zoom in or out. If this would move the image
 beyond the panning limits, the image is automatically panned during the animation.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scale</code> - Target scale.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.AnimationBuilder</code></a> instance. Call <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html#start--"><code>SubsamplingScaleImageView.AnimationBuilder.start()</code></a> to start the anim.</dd>
</dl>
</li>
</ul>
<a name="animateScaleAndCenter-float-android.graphics.PointF-">
<!--   -->
</a>
<ul class="blockListLast">
<li class="blockList">
<h4>animateScaleAndCenter</h4>
<pre>public&nbsp;<a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview">SubsamplingScaleImageView.AnimationBuilder</a>&nbsp;animateScaleAndCenter(float&nbsp;scale,
                                                                        <a href="https://developer.android.com/reference/android/graphics/PointF.html?is-external=true" title="class or interface in android.graphics">PointF</a>&nbsp;sCenter)</pre>
<div class="block">Creates a scale animation builder, that when started will animate a zoom in or out. If this would move the image
 beyond the panning limits, the image is automatically panned during the animation.</div>
<dl>
<dt><span class="paramLabel">Parameters:</span></dt>
<dd><code>scale</code> - Target scale.</dd>
<dd><code>sCenter</code> - Target source center.</dd>
<dt><span class="returnLabel">Returns:</span></dt>
<dd><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview"><code>SubsamplingScaleImageView.AnimationBuilder</code></a> instance. Call <a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html#start--"><code>SubsamplingScaleImageView.AnimationBuilder.start()</code></a> to start the anim.</dd>
</dl>
</li>
</ul>
</li>
</ul>
</li>
</ul>
</div>
</div>
<!-- ========= END OF CLASS DATA ========= -->
<!-- ======= START OF BOTTOM NAVBAR ====== -->
<div class="bottomNav"><a name="navbar.bottom">
<!--   -->
</a>
<div class="skipNav"><a href="#skip.navbar.bottom" title="Skip navigation links">Skip navigation links</a></div>
<a name="navbar.bottom.firstrow">
<!--   -->
</a>
<ul class="navList" title="Navigation">
<li><a href="../../../../overview-summary.html">Overview</a></li>
<li><a href="package-summary.html">Package</a></li>
<li class="navBarCell1Rev">Class</li>
<li><a href="package-tree.html">Tree</a></li>
<li><a href="../../../../deprecated-list.html">Deprecated</a></li>
<li><a href="../../../../index-all.html">Index</a></li>
<li><a href="../../../../help-doc.html">Help</a></li>
</ul>
</div>
<div class="subNav">
<ul class="navList">
<li><a href="../../../../com/davemorrissey/labs/subscaleview/ImageViewState.html" title="class in com.davemorrissey.labs.subscaleview"><span class="typeNameLink">Prev&nbsp;Class</span></a></li>
<li><a href="../../../../com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.AnimationBuilder.html" title="class in com.davemorrissey.labs.subscaleview"><span class="typeNameLink">Next&nbsp;Class</span></a></li>
</ul>
<ul class="navList">
<li><a href="../../../../index.html?com/davemorrissey/labs/subscaleview/SubsamplingScaleImageView.html" target="_top">Frames</a></li>
<li><a href="SubsamplingScaleImageView.html" target="_top">No&nbsp;Frames</a></li>
</ul>
<ul class="navList" id="allclasses_navbar_bottom">
<li><a href="../../../../allclasses-noframe.html">All&nbsp;Classes</a></li>
</ul>
<div>
<script type="text/javascript"><!--
  allClassesLink = document.getElementById("allclasses_navbar_bottom");
  if(window==top) {
    allClassesLink.style.display = "block";
  }
  else {
    allClassesLink.style.display = "none";
  }
  //-->
</script>
</div>
<div>
<ul class="subNavList">
<li>Summary:&nbsp;</li>
<li><a href="#nested.class.summary">Nested</a>&nbsp;|&nbsp;</li>
<li><a href="#field.summary">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.summary">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.summary">Method</a></li>
</ul>
<ul class="subNavList">
<li>Detail:&nbsp;</li>
<li><a href="#field.detail">Field</a>&nbsp;|&nbsp;</li>
<li><a href="#constructor.detail">Constr</a>&nbsp;|&nbsp;</li>
<li><a href="#method.detail">Method</a></li>
</ul>
</div>
<a name="skip.navbar.bottom">
<!--   -->
</a></div>
<!-- ======== END OF BOTTOM NAVBAR ======= -->
</body>
</html>