R.java 144 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441
/* AUTO-GENERATED FILE.  DO NOT MODIFY.
 *
 * This class was automatically generated by the
 * aapt tool from the resource data it found.  It
 * should not be modified by hand.
 */

package com.example.filewrite;

public final class R {
    public static final class anim {
        public static final int abc_fade_in=0x7f040000;
        public static final int abc_fade_out=0x7f040001;
        public static final int abc_slide_in_bottom=0x7f040002;
        public static final int abc_slide_in_top=0x7f040003;
        public static final int abc_slide_out_bottom=0x7f040004;
        public static final int abc_slide_out_top=0x7f040005;
    }
    public static final class attr {
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarDivider=0x7f010000;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarItemBackground=0x7f010001;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int actionBarSize=0x7f010002;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarSplitStyle=0x7f010003;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarStyle=0x7f010004;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarTabBarStyle=0x7f010005;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarTabStyle=0x7f010006;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarTabTextStyle=0x7f010007;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionBarWidgetTheme=0x7f010008;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionButtonStyle=0x7f010009;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionDropDownStyle=0x7f010066;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionLayout=0x7f01005d;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionMenuTextAppearance=0x7f01000a;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int actionMenuTextColor=0x7f01000b;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeBackground=0x7f01000c;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeCloseButtonStyle=0x7f01000d;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeCloseDrawable=0x7f01000e;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeCopyDrawable=0x7f01000f;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeCutDrawable=0x7f010010;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeFindDrawable=0x7f010011;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModePasteDrawable=0x7f010012;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModePopupWindowStyle=0x7f010013;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeSelectAllDrawable=0x7f010014;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeShareDrawable=0x7f010015;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeSplitBackground=0x7f010016;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeStyle=0x7f010017;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionModeWebSearchDrawable=0x7f010018;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int actionOverflowButtonStyle=0x7f010019;
        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int actionProviderClass=0x7f01005f;
        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int actionViewClass=0x7f01005e;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int activityChooserViewStyle=0x7f01001a;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int background=0x7f010047;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int backgroundSplit=0x7f010049;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int backgroundStacked=0x7f010048;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonBarButtonStyle=0x7f01001b;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int buttonBarStyle=0x7f01001c;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int customNavigationLayout=0x7f01004a;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int disableChildrenWhenDisabled=0x7f010065;
        /** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
         */
        public static final int displayOptions=0x7f010040;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int divider=0x7f010046;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int dividerHorizontal=0x7f01001d;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int dividerPadding=0x7f01005b;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int dividerVertical=0x7f01001e;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int dropDownListViewStyle=0x7f01001f;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int dropdownListPreferredItemHeight=0x7f010067;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int expandActivityOverflowButtonDrawable=0x7f010058;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int height=0x7f010020;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int homeAsUpIndicator=0x7f010021;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int homeLayout=0x7f01004b;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int icon=0x7f010044;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int iconifiedByDefault=0x7f010060;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int indeterminateProgressStyle=0x7f01004d;
        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int initialActivityCount=0x7f010057;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int isLightTheme=0x7f010022;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int itemPadding=0x7f01004f;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int listChoiceBackgroundIndicator=0x7f01006b;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int listPopupWindowStyle=0x7f010023;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemHeight=0x7f010024;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemHeightLarge=0x7f010025;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemHeightSmall=0x7f010026;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemPaddingLeft=0x7f010027;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int listPreferredItemPaddingRight=0x7f010028;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int logo=0x7f010045;
        /** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
         */
        public static final int navigationMode=0x7f01003f;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int paddingEnd=0x7f01006d;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int paddingStart=0x7f01006c;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int panelMenuListTheme=0x7f01006a;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int panelMenuListWidth=0x7f010069;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int popupMenuStyle=0x7f010068;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int popupPromptView=0x7f010064;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int progressBarPadding=0x7f01004e;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int progressBarStyle=0x7f01004c;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int prompt=0x7f010062;
        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int queryHint=0x7f010061;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchDropdownBackground=0x7f010029;
        /** <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int searchResultListItemHeight=0x7f01002a;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewAutoCompleteTextView=0x7f01002b;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewCloseIcon=0x7f01002c;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewEditQuery=0x7f01002d;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewEditQueryBackground=0x7f01002e;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewGoIcon=0x7f01002f;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewSearchIcon=0x7f010030;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewTextField=0x7f010031;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewTextFieldRight=0x7f010032;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int searchViewVoiceIcon=0x7f010033;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int selectableItemBackground=0x7f010034;
        /** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
         */
        public static final int showAsAction=0x7f01005c;
        /** <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
         */
        public static final int showDividers=0x7f01005a;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int spinnerDropDownItemStyle=0x7f010035;
        /** <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>dialog</code></td><td>0</td><td></td></tr>
<tr><td><code>dropdown</code></td><td>1</td><td></td></tr>
</table>
         */
        public static final int spinnerMode=0x7f010063;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int spinnerStyle=0x7f010036;
        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int subtitle=0x7f010041;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int subtitleTextStyle=0x7f010043;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
         */
        public static final int textAllCaps=0x7f010059;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceLargePopupMenu=0x7f010037;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceListItem=0x7f010038;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceListItemSmall=0x7f010039;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceSearchResultSubtitle=0x7f01003a;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceSearchResultTitle=0x7f01003b;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int textAppearanceSmallPopupMenu=0x7f01003c;
        /** <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
         */
        public static final int textColorSearchUrl=0x7f01003d;
        /** <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int title=0x7f01003e;
        /** <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
         */
        public static final int titleTextStyle=0x7f010042;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowActionBar=0x7f010050;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowActionBarOverlay=0x7f010051;
        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowFixedHeightMajor=0x7f010056;
        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowFixedHeightMinor=0x7f010054;
        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowFixedWidthMajor=0x7f010053;
        /** <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowFixedWidthMinor=0x7f010055;
        /** <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
         */
        public static final int windowSplitActionBar=0x7f010052;
    }
    public static final class bool {
        public static final int abc_action_bar_embed_tabs_pre_jb=0x7f050000;
        public static final int abc_action_bar_expanded_action_views_exclusive=0x7f050001;
        public static final int abc_config_actionMenuItemAllCaps=0x7f050002;
        public static final int abc_config_allowActionMenuItemTextWithIcon=0x7f050003;
        public static final int abc_config_showMenuShortcutsWhenKeyboardPresent=0x7f050004;
        public static final int abc_split_action_bar_is_narrow=0x7f050005;
    }
    public static final class color {
        public static final int abc_search_url_text_holo=0x7f060003;
        public static final int abc_search_url_text_normal=0x7f060000;
        public static final int abc_search_url_text_pressed=0x7f060001;
        public static final int abc_search_url_text_selected=0x7f060002;
    }
    public static final class dimen {
        public static final int abc_action_bar_default_height=0x7f070000;
        public static final int abc_action_bar_icon_vertical_padding=0x7f070001;
        public static final int abc_action_bar_progress_bar_size=0x7f070002;
        public static final int abc_action_bar_stacked_max_height=0x7f070003;
        public static final int abc_action_bar_stacked_tab_max_width=0x7f070004;
        public static final int abc_action_bar_subtitle_bottom_margin=0x7f070005;
        public static final int abc_action_bar_subtitle_text_size=0x7f070006;
        public static final int abc_action_bar_subtitle_top_margin=0x7f070007;
        public static final int abc_action_bar_title_text_size=0x7f070008;
        public static final int abc_action_button_min_width=0x7f070009;
        public static final int abc_config_prefDialogWidth=0x7f07000a;
        public static final int abc_dropdownitem_icon_width=0x7f07000b;
        public static final int abc_dropdownitem_text_padding_left=0x7f07000c;
        public static final int abc_dropdownitem_text_padding_right=0x7f07000d;
        public static final int abc_panel_menu_list_width=0x7f07000e;
        public static final int abc_search_view_preferred_width=0x7f07000f;
        public static final int abc_search_view_text_min_width=0x7f070010;
        public static final int activity_horizontal_margin=0x7f070011;
        public static final int activity_vertical_margin=0x7f070012;
        public static final int dialog_fixed_height_major=0x7f070013;
        public static final int dialog_fixed_height_minor=0x7f070014;
        public static final int dialog_fixed_width_major=0x7f070015;
        public static final int dialog_fixed_width_minor=0x7f070016;
    }
    public static final class drawable {
        public static final int abc_ab_bottom_solid_dark_holo=0x7f020000;
        public static final int abc_ab_bottom_solid_light_holo=0x7f020001;
        public static final int abc_ab_bottom_transparent_dark_holo=0x7f020002;
        public static final int abc_ab_bottom_transparent_light_holo=0x7f020003;
        public static final int abc_ab_share_pack_holo_dark=0x7f020004;
        public static final int abc_ab_share_pack_holo_light=0x7f020005;
        public static final int abc_ab_solid_dark_holo=0x7f020006;
        public static final int abc_ab_solid_light_holo=0x7f020007;
        public static final int abc_ab_stacked_solid_dark_holo=0x7f020008;
        public static final int abc_ab_stacked_solid_light_holo=0x7f020009;
        public static final int abc_ab_stacked_transparent_dark_holo=0x7f02000a;
        public static final int abc_ab_stacked_transparent_light_holo=0x7f02000b;
        public static final int abc_ab_transparent_dark_holo=0x7f02000c;
        public static final int abc_ab_transparent_light_holo=0x7f02000d;
        public static final int abc_cab_background_bottom_holo_dark=0x7f02000e;
        public static final int abc_cab_background_bottom_holo_light=0x7f02000f;
        public static final int abc_cab_background_top_holo_dark=0x7f020010;
        public static final int abc_cab_background_top_holo_light=0x7f020011;
        public static final int abc_ic_ab_back_holo_dark=0x7f020012;
        public static final int abc_ic_ab_back_holo_light=0x7f020013;
        public static final int abc_ic_cab_done_holo_dark=0x7f020014;
        public static final int abc_ic_cab_done_holo_light=0x7f020015;
        public static final int abc_ic_clear=0x7f020016;
        public static final int abc_ic_clear_disabled=0x7f020017;
        public static final int abc_ic_clear_holo_light=0x7f020018;
        public static final int abc_ic_clear_normal=0x7f020019;
        public static final int abc_ic_clear_search_api_disabled_holo_light=0x7f02001a;
        public static final int abc_ic_clear_search_api_holo_light=0x7f02001b;
        public static final int abc_ic_commit_search_api_holo_dark=0x7f02001c;
        public static final int abc_ic_commit_search_api_holo_light=0x7f02001d;
        public static final int abc_ic_go=0x7f02001e;
        public static final int abc_ic_go_search_api_holo_light=0x7f02001f;
        public static final int abc_ic_menu_moreoverflow_normal_holo_dark=0x7f020020;
        public static final int abc_ic_menu_moreoverflow_normal_holo_light=0x7f020021;
        public static final int abc_ic_menu_share_holo_dark=0x7f020022;
        public static final int abc_ic_menu_share_holo_light=0x7f020023;
        public static final int abc_ic_search=0x7f020024;
        public static final int abc_ic_search_api_holo_light=0x7f020025;
        public static final int abc_ic_voice_search=0x7f020026;
        public static final int abc_ic_voice_search_api_holo_light=0x7f020027;
        public static final int abc_item_background_holo_dark=0x7f020028;
        public static final int abc_item_background_holo_light=0x7f020029;
        public static final int abc_list_divider_holo_dark=0x7f02002a;
        public static final int abc_list_divider_holo_light=0x7f02002b;
        public static final int abc_list_focused_holo=0x7f02002c;
        public static final int abc_list_longpressed_holo=0x7f02002d;
        public static final int abc_list_pressed_holo_dark=0x7f02002e;
        public static final int abc_list_pressed_holo_light=0x7f02002f;
        public static final int abc_list_selector_background_transition_holo_dark=0x7f020030;
        public static final int abc_list_selector_background_transition_holo_light=0x7f020031;
        public static final int abc_list_selector_disabled_holo_dark=0x7f020032;
        public static final int abc_list_selector_disabled_holo_light=0x7f020033;
        public static final int abc_list_selector_holo_dark=0x7f020034;
        public static final int abc_list_selector_holo_light=0x7f020035;
        public static final int abc_menu_dropdown_panel_holo_dark=0x7f020036;
        public static final int abc_menu_dropdown_panel_holo_light=0x7f020037;
        public static final int abc_menu_hardkey_panel_holo_dark=0x7f020038;
        public static final int abc_menu_hardkey_panel_holo_light=0x7f020039;
        public static final int abc_search_dropdown_dark=0x7f02003a;
        public static final int abc_search_dropdown_light=0x7f02003b;
        public static final int abc_spinner_ab_default_holo_dark=0x7f02003c;
        public static final int abc_spinner_ab_default_holo_light=0x7f02003d;
        public static final int abc_spinner_ab_disabled_holo_dark=0x7f02003e;
        public static final int abc_spinner_ab_disabled_holo_light=0x7f02003f;
        public static final int abc_spinner_ab_focused_holo_dark=0x7f020040;
        public static final int abc_spinner_ab_focused_holo_light=0x7f020041;
        public static final int abc_spinner_ab_holo_dark=0x7f020042;
        public static final int abc_spinner_ab_holo_light=0x7f020043;
        public static final int abc_spinner_ab_pressed_holo_dark=0x7f020044;
        public static final int abc_spinner_ab_pressed_holo_light=0x7f020045;
        public static final int abc_tab_indicator_ab_holo=0x7f020046;
        public static final int abc_tab_selected_focused_holo=0x7f020047;
        public static final int abc_tab_selected_holo=0x7f020048;
        public static final int abc_tab_selected_pressed_holo=0x7f020049;
        public static final int abc_tab_unselected_pressed_holo=0x7f02004a;
        public static final int abc_textfield_search_default_holo_dark=0x7f02004b;
        public static final int abc_textfield_search_default_holo_light=0x7f02004c;
        public static final int abc_textfield_search_right_default_holo_dark=0x7f02004d;
        public static final int abc_textfield_search_right_default_holo_light=0x7f02004e;
        public static final int abc_textfield_search_right_selected_holo_dark=0x7f02004f;
        public static final int abc_textfield_search_right_selected_holo_light=0x7f020050;
        public static final int abc_textfield_search_selected_holo_dark=0x7f020051;
        public static final int abc_textfield_search_selected_holo_light=0x7f020052;
        public static final int abc_textfield_searchview_holo_dark=0x7f020053;
        public static final int abc_textfield_searchview_holo_light=0x7f020054;
        public static final int abc_textfield_searchview_right_holo_dark=0x7f020055;
        public static final int abc_textfield_searchview_right_holo_light=0x7f020056;
        public static final int ic_launcher=0x7f020057;
    }
    public static final class id {
        public static final int action_bar=0x7f08001c;
        public static final int action_bar_activity_content=0x7f080000;
        public static final int action_bar_container=0x7f08001b;
        public static final int action_bar_overlay_layout=0x7f08001f;
        public static final int action_bar_root=0x7f08001a;
        public static final int action_bar_subtitle=0x7f080023;
        public static final int action_bar_title=0x7f080022;
        public static final int action_context_bar=0x7f08001d;
        public static final int action_menu_divider=0x7f080001;
        public static final int action_menu_presenter=0x7f080002;
        public static final int action_mode_close_button=0x7f080024;
        public static final int action_settings=0x7f080044;
        public static final int activity_chooser_view_content=0x7f080025;
        public static final int always=0x7f080013;
        public static final int beginning=0x7f08000f;
        public static final int checkbox=0x7f08002d;
        public static final int collapseActionView=0x7f080014;
        public static final int default_activity_button=0x7f080028;
        public static final int dialog=0x7f080018;
        public static final int disableHome=0x7f080009;
        public static final int dropdown=0x7f080019;
        public static final int edit_query=0x7f080030;
        public static final int end=0x7f080010;
        public static final int expand_activities_button=0x7f080026;
        public static final int expanded_menu=0x7f08002c;
        public static final int home=0x7f080003;
        public static final int homeAsUp=0x7f08000a;
        public static final int icon=0x7f08002a;
        public static final int ifRoom=0x7f080015;
        public static final int image=0x7f080027;
        public static final int listMode=0x7f080006;
        public static final int list_item=0x7f080029;
        public static final int middle=0x7f080011;
        public static final int never=0x7f080016;
        public static final int none=0x7f080012;
        public static final int normal=0x7f080007;
        public static final int progressBar1=0x7f080040;
        public static final int progressBar2=0x7f080041;
        public static final int progressBar3=0x7f080042;
        public static final int progress_circular=0x7f080004;
        public static final int progress_horizontal=0x7f080005;
        public static final int radio=0x7f08002f;
        public static final int search_badge=0x7f080032;
        public static final int search_bar=0x7f080031;
        public static final int search_button=0x7f080033;
        public static final int search_close_btn=0x7f080038;
        public static final int search_edit_frame=0x7f080034;
        public static final int search_go_btn=0x7f08003a;
        public static final int search_mag_icon=0x7f080035;
        public static final int search_plate=0x7f080036;
        public static final int search_src_text=0x7f080037;
        public static final int search_voice_btn=0x7f08003b;
        public static final int shortcut=0x7f08002e;
        public static final int showCustom=0x7f08000b;
        public static final int showHome=0x7f08000c;
        public static final int showTitle=0x7f08000d;
        public static final int split_action_bar=0x7f08001e;
        public static final int submit_area=0x7f080039;
        public static final int switchBtn=0x7f08003f;
        public static final int tabMode=0x7f080008;
        public static final int title=0x7f08002b;
        public static final int top_action_bar=0x7f080020;
        public static final int tvCount=0x7f08003d;
        public static final int tvX=0x7f08003c;
        public static final int tvY=0x7f080043;
        public static final int tvZ=0x7f08003e;
        public static final int up=0x7f080021;
        public static final int useLogo=0x7f08000e;
        public static final int withText=0x7f080017;
    }
    public static final class integer {
        public static final int abc_max_action_buttons=0x7f090000;
    }
    public static final class layout {
        public static final int abc_action_bar_decor=0x7f030000;
        public static final int abc_action_bar_decor_include=0x7f030001;
        public static final int abc_action_bar_decor_overlay=0x7f030002;
        public static final int abc_action_bar_home=0x7f030003;
        public static final int abc_action_bar_tab=0x7f030004;
        public static final int abc_action_bar_tabbar=0x7f030005;
        public static final int abc_action_bar_title_item=0x7f030006;
        public static final int abc_action_bar_view_list_nav_layout=0x7f030007;
        public static final int abc_action_menu_item_layout=0x7f030008;
        public static final int abc_action_menu_layout=0x7f030009;
        public static final int abc_action_mode_bar=0x7f03000a;
        public static final int abc_action_mode_close_item=0x7f03000b;
        public static final int abc_activity_chooser_view=0x7f03000c;
        public static final int abc_activity_chooser_view_include=0x7f03000d;
        public static final int abc_activity_chooser_view_list_item=0x7f03000e;
        public static final int abc_expanded_menu_layout=0x7f03000f;
        public static final int abc_list_menu_item_checkbox=0x7f030010;
        public static final int abc_list_menu_item_icon=0x7f030011;
        public static final int abc_list_menu_item_layout=0x7f030012;
        public static final int abc_list_menu_item_radio=0x7f030013;
        public static final int abc_popup_menu_item_layout=0x7f030014;
        public static final int abc_search_dropdown_item_icons_2line=0x7f030015;
        public static final int abc_search_view=0x7f030016;
        public static final int abc_simple_decor=0x7f030017;
        public static final int activity_main=0x7f030018;
        public static final int support_simple_spinner_dropdown_item=0x7f030019;
    }
    public static final class menu {
        public static final int main=0x7f0c0000;
    }
    public static final class string {
        public static final int Empty=0x7f0a0000;
        public static final int abc_action_bar_home_description=0x7f0a0001;
        public static final int abc_action_bar_up_description=0x7f0a0002;
        public static final int abc_action_menu_overflow_description=0x7f0a0003;
        public static final int abc_action_mode_done=0x7f0a0004;
        public static final int abc_activity_chooser_view_see_all=0x7f0a0005;
        public static final int abc_activitychooserview_choose_application=0x7f0a0006;
        public static final int abc_searchview_description_clear=0x7f0a0007;
        public static final int abc_searchview_description_query=0x7f0a0008;
        public static final int abc_searchview_description_search=0x7f0a0009;
        public static final int abc_searchview_description_submit=0x7f0a000a;
        public static final int abc_searchview_description_voice=0x7f0a000b;
        public static final int abc_shareactionprovider_share_with=0x7f0a000c;
        public static final int abc_shareactionprovider_share_with_application=0x7f0a000d;
        public static final int action_settings=0x7f0a000e;
        public static final int app_name=0x7f0a000f;
        public static final int hello_world=0x7f0a0010;
    }
    public static final class style {
        /** 
            Theme customizations available in newer API levels can go in
            res/values-vXX/styles.xml, while customizations related to
            backward-compatibility can go here.
        
 API 11 theme customizations can go here. 
 API 14 theme customizations can go here. 
         */
        public static final int AppBaseTheme=0x7f0b0000;
        /**  All customizations that are NOT specific to a particular API-level can go here. 
         */
        public static final int AppTheme=0x7f0b0001;
        public static final int TextAppearance_AppCompat_Base_CompactMenu_Dialog=0x7f0b0002;
        public static final int TextAppearance_AppCompat_Base_SearchResult=0x7f0b0003;
        public static final int TextAppearance_AppCompat_Base_SearchResult_Subtitle=0x7f0b0004;
        public static final int TextAppearance_AppCompat_Base_SearchResult_Title=0x7f0b0005;
        public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Large=0x7f0b0006;
        public static final int TextAppearance_AppCompat_Base_Widget_PopupMenu_Small=0x7f0b0007;
        public static final int TextAppearance_AppCompat_Light_Base_SearchResult=0x7f0b0008;
        public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Subtitle=0x7f0b0009;
        public static final int TextAppearance_AppCompat_Light_Base_SearchResult_Title=0x7f0b000a;
        public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Large=0x7f0b000b;
        public static final int TextAppearance_AppCompat_Light_Base_Widget_PopupMenu_Small=0x7f0b000c;
        public static final int TextAppearance_AppCompat_Light_SearchResult_Subtitle=0x7f0b000d;
        public static final int TextAppearance_AppCompat_Light_SearchResult_Title=0x7f0b000e;
        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Large=0x7f0b000f;
        public static final int TextAppearance_AppCompat_Light_Widget_PopupMenu_Small=0x7f0b0010;
        public static final int TextAppearance_AppCompat_SearchResult_Subtitle=0x7f0b0011;
        public static final int TextAppearance_AppCompat_SearchResult_Title=0x7f0b0012;
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Menu=0x7f0b0013;
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle=0x7f0b0014;
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Subtitle_Inverse=0x7f0b0015;
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title=0x7f0b0016;
        public static final int TextAppearance_AppCompat_Widget_ActionBar_Title_Inverse=0x7f0b0017;
        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle=0x7f0b0018;
        public static final int TextAppearance_AppCompat_Widget_ActionMode_Subtitle_Inverse=0x7f0b0019;
        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title=0x7f0b001a;
        public static final int TextAppearance_AppCompat_Widget_ActionMode_Title_Inverse=0x7f0b001b;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Menu=0x7f0b001c;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle=0x7f0b001d;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Subtitle_Inverse=0x7f0b001e;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title=0x7f0b001f;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionBar_Title_Inverse=0x7f0b0020;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle=0x7f0b0021;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Subtitle_Inverse=0x7f0b0022;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title=0x7f0b0023;
        public static final int TextAppearance_AppCompat_Widget_Base_ActionMode_Title_Inverse=0x7f0b0024;
        public static final int TextAppearance_AppCompat_Widget_Base_DropDownItem=0x7f0b0025;
        public static final int TextAppearance_AppCompat_Widget_DropDownItem=0x7f0b0026;
        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Large=0x7f0b0027;
        public static final int TextAppearance_AppCompat_Widget_PopupMenu_Small=0x7f0b0028;
        public static final int TextAppearance_Widget_AppCompat_Base_ExpandedMenu_Item=0x7f0b0029;
        public static final int TextAppearance_Widget_AppCompat_ExpandedMenu_Item=0x7f0b002a;
        public static final int Theme_AppCompat=0x7f0b002b;
        public static final int Theme_AppCompat_Base_CompactMenu=0x7f0b002c;
        public static final int Theme_AppCompat_Base_CompactMenu_Dialog=0x7f0b002d;
        public static final int Theme_AppCompat_CompactMenu=0x7f0b002e;
        public static final int Theme_AppCompat_CompactMenu_Dialog=0x7f0b002f;
        public static final int Theme_AppCompat_DialogWhenLarge=0x7f0b0030;
        public static final int Theme_AppCompat_Light=0x7f0b0031;
        public static final int Theme_AppCompat_Light_DarkActionBar=0x7f0b0032;
        public static final int Theme_AppCompat_Light_DialogWhenLarge=0x7f0b0033;
        public static final int Theme_Base=0x7f0b0034;
        public static final int Theme_Base_AppCompat=0x7f0b0035;
        public static final int Theme_Base_AppCompat_Dialog_FixedSize=0x7f0b0036;
        public static final int Theme_Base_AppCompat_Dialog_Light_FixedSize=0x7f0b0037;
        public static final int Theme_Base_AppCompat_DialogWhenLarge=0x7f0b0038;
        public static final int Theme_Base_AppCompat_DialogWhenLarge_Base=0x7f0b008b;
        public static final int Theme_Base_AppCompat_Light=0x7f0b0039;
        public static final int Theme_Base_AppCompat_Light_DarkActionBar=0x7f0b003a;
        public static final int Theme_Base_AppCompat_Light_DialogWhenLarge=0x7f0b003b;
        public static final int Theme_Base_AppCompat_Light_DialogWhenLarge_Base=0x7f0b008c;
        public static final int Theme_Base_Light=0x7f0b003c;
        public static final int Widget_AppCompat_ActionBar=0x7f0b003d;
        public static final int Widget_AppCompat_ActionBar_Solid=0x7f0b003e;
        public static final int Widget_AppCompat_ActionBar_TabBar=0x7f0b003f;
        public static final int Widget_AppCompat_ActionBar_TabText=0x7f0b0040;
        public static final int Widget_AppCompat_ActionBar_TabView=0x7f0b0041;
        public static final int Widget_AppCompat_ActionButton=0x7f0b0042;
        public static final int Widget_AppCompat_ActionButton_CloseMode=0x7f0b0043;
        public static final int Widget_AppCompat_ActionButton_Overflow=0x7f0b0044;
        public static final int Widget_AppCompat_ActionMode=0x7f0b0045;
        public static final int Widget_AppCompat_ActivityChooserView=0x7f0b0046;
        public static final int Widget_AppCompat_AutoCompleteTextView=0x7f0b0047;
        public static final int Widget_AppCompat_Base_ActionBar=0x7f0b0048;
        public static final int Widget_AppCompat_Base_ActionBar_Solid=0x7f0b0049;
        public static final int Widget_AppCompat_Base_ActionBar_TabBar=0x7f0b004a;
        public static final int Widget_AppCompat_Base_ActionBar_TabText=0x7f0b004b;
        public static final int Widget_AppCompat_Base_ActionBar_TabView=0x7f0b004c;
        public static final int Widget_AppCompat_Base_ActionButton=0x7f0b004d;
        public static final int Widget_AppCompat_Base_ActionButton_CloseMode=0x7f0b004e;
        public static final int Widget_AppCompat_Base_ActionButton_Overflow=0x7f0b004f;
        public static final int Widget_AppCompat_Base_ActionMode=0x7f0b0050;
        public static final int Widget_AppCompat_Base_ActivityChooserView=0x7f0b0051;
        public static final int Widget_AppCompat_Base_AutoCompleteTextView=0x7f0b0052;
        public static final int Widget_AppCompat_Base_DropDownItem_Spinner=0x7f0b0053;
        public static final int Widget_AppCompat_Base_ListPopupWindow=0x7f0b0054;
        public static final int Widget_AppCompat_Base_ListView_DropDown=0x7f0b0055;
        public static final int Widget_AppCompat_Base_ListView_Menu=0x7f0b0056;
        public static final int Widget_AppCompat_Base_PopupMenu=0x7f0b0057;
        public static final int Widget_AppCompat_Base_ProgressBar=0x7f0b0058;
        public static final int Widget_AppCompat_Base_ProgressBar_Horizontal=0x7f0b0059;
        public static final int Widget_AppCompat_Base_Spinner=0x7f0b005a;
        public static final int Widget_AppCompat_DropDownItem_Spinner=0x7f0b005b;
        public static final int Widget_AppCompat_Light_ActionBar=0x7f0b005c;
        public static final int Widget_AppCompat_Light_ActionBar_Solid=0x7f0b005d;
        public static final int Widget_AppCompat_Light_ActionBar_Solid_Inverse=0x7f0b005e;
        public static final int Widget_AppCompat_Light_ActionBar_TabBar=0x7f0b005f;
        public static final int Widget_AppCompat_Light_ActionBar_TabBar_Inverse=0x7f0b0060;
        public static final int Widget_AppCompat_Light_ActionBar_TabText=0x7f0b0061;
        public static final int Widget_AppCompat_Light_ActionBar_TabText_Inverse=0x7f0b0062;
        public static final int Widget_AppCompat_Light_ActionBar_TabView=0x7f0b0063;
        public static final int Widget_AppCompat_Light_ActionBar_TabView_Inverse=0x7f0b0064;
        public static final int Widget_AppCompat_Light_ActionButton=0x7f0b0065;
        public static final int Widget_AppCompat_Light_ActionButton_CloseMode=0x7f0b0066;
        public static final int Widget_AppCompat_Light_ActionButton_Overflow=0x7f0b0067;
        public static final int Widget_AppCompat_Light_ActionMode_Inverse=0x7f0b0068;
        public static final int Widget_AppCompat_Light_ActivityChooserView=0x7f0b0069;
        public static final int Widget_AppCompat_Light_AutoCompleteTextView=0x7f0b006a;
        public static final int Widget_AppCompat_Light_Base_ActionBar=0x7f0b006b;
        public static final int Widget_AppCompat_Light_Base_ActionBar_Solid=0x7f0b006c;
        public static final int Widget_AppCompat_Light_Base_ActionBar_Solid_Inverse=0x7f0b006d;
        public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar=0x7f0b006e;
        public static final int Widget_AppCompat_Light_Base_ActionBar_TabBar_Inverse=0x7f0b006f;
        public static final int Widget_AppCompat_Light_Base_ActionBar_TabText=0x7f0b0070;
        public static final int Widget_AppCompat_Light_Base_ActionBar_TabText_Inverse=0x7f0b0071;
        public static final int Widget_AppCompat_Light_Base_ActionBar_TabView=0x7f0b0072;
        public static final int Widget_AppCompat_Light_Base_ActionBar_TabView_Inverse=0x7f0b0073;
        public static final int Widget_AppCompat_Light_Base_ActionButton=0x7f0b0074;
        public static final int Widget_AppCompat_Light_Base_ActionButton_CloseMode=0x7f0b0075;
        public static final int Widget_AppCompat_Light_Base_ActionButton_Overflow=0x7f0b0076;
        public static final int Widget_AppCompat_Light_Base_ActionMode_Inverse=0x7f0b0077;
        public static final int Widget_AppCompat_Light_Base_ActivityChooserView=0x7f0b0078;
        public static final int Widget_AppCompat_Light_Base_AutoCompleteTextView=0x7f0b0079;
        public static final int Widget_AppCompat_Light_Base_DropDownItem_Spinner=0x7f0b007a;
        public static final int Widget_AppCompat_Light_Base_ListPopupWindow=0x7f0b007b;
        public static final int Widget_AppCompat_Light_Base_ListView_DropDown=0x7f0b007c;
        public static final int Widget_AppCompat_Light_Base_PopupMenu=0x7f0b007d;
        public static final int Widget_AppCompat_Light_Base_Spinner=0x7f0b007e;
        public static final int Widget_AppCompat_Light_DropDownItem_Spinner=0x7f0b007f;
        public static final int Widget_AppCompat_Light_ListPopupWindow=0x7f0b0080;
        public static final int Widget_AppCompat_Light_ListView_DropDown=0x7f0b0081;
        public static final int Widget_AppCompat_Light_PopupMenu=0x7f0b0082;
        public static final int Widget_AppCompat_Light_Spinner_DropDown_ActionBar=0x7f0b0083;
        public static final int Widget_AppCompat_ListPopupWindow=0x7f0b0084;
        public static final int Widget_AppCompat_ListView_DropDown=0x7f0b0085;
        public static final int Widget_AppCompat_ListView_Menu=0x7f0b0086;
        public static final int Widget_AppCompat_PopupMenu=0x7f0b0087;
        public static final int Widget_AppCompat_ProgressBar=0x7f0b0088;
        public static final int Widget_AppCompat_ProgressBar_Horizontal=0x7f0b0089;
        public static final int Widget_AppCompat_Spinner_DropDown_ActionBar=0x7f0b008a;
    }
    public static final class styleable {
        /** Attributes that can be used with a ActionBar.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ActionBar_background com.example.filewrite:background}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_backgroundSplit com.example.filewrite:backgroundSplit}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_backgroundStacked com.example.filewrite:backgroundStacked}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_customNavigationLayout com.example.filewrite:customNavigationLayout}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_displayOptions com.example.filewrite:displayOptions}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_divider com.example.filewrite:divider}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_height com.example.filewrite:height}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_homeLayout com.example.filewrite:homeLayout}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_icon com.example.filewrite:icon}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_indeterminateProgressStyle com.example.filewrite:indeterminateProgressStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_itemPadding com.example.filewrite:itemPadding}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_logo com.example.filewrite:logo}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_navigationMode com.example.filewrite:navigationMode}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_progressBarPadding com.example.filewrite:progressBarPadding}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_progressBarStyle com.example.filewrite:progressBarStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_subtitle com.example.filewrite:subtitle}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_subtitleTextStyle com.example.filewrite:subtitleTextStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_title com.example.filewrite:title}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBar_titleTextStyle com.example.filewrite:titleTextStyle}</code></td><td></td></tr>
           </table>
           @see #ActionBar_background
           @see #ActionBar_backgroundSplit
           @see #ActionBar_backgroundStacked
           @see #ActionBar_customNavigationLayout
           @see #ActionBar_displayOptions
           @see #ActionBar_divider
           @see #ActionBar_height
           @see #ActionBar_homeLayout
           @see #ActionBar_icon
           @see #ActionBar_indeterminateProgressStyle
           @see #ActionBar_itemPadding
           @see #ActionBar_logo
           @see #ActionBar_navigationMode
           @see #ActionBar_progressBarPadding
           @see #ActionBar_progressBarStyle
           @see #ActionBar_subtitle
           @see #ActionBar_subtitleTextStyle
           @see #ActionBar_title
           @see #ActionBar_titleTextStyle
         */
        public static final int[] ActionBar = {
            0x7f010020, 0x7f01003e, 0x7f01003f, 0x7f010040,
            0x7f010041, 0x7f010042, 0x7f010043, 0x7f010044,
            0x7f010045, 0x7f010046, 0x7f010047, 0x7f010048,
            0x7f010049, 0x7f01004a, 0x7f01004b, 0x7f01004c,
            0x7f01004d, 0x7f01004e, 0x7f01004f
        };
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#background}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:background
        */
        public static final int ActionBar_background = 10;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#backgroundSplit}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
          @attr name com.example.filewrite:backgroundSplit
        */
        public static final int ActionBar_backgroundSplit = 12;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#backgroundStacked}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
          @attr name com.example.filewrite:backgroundStacked
        */
        public static final int ActionBar_backgroundStacked = 11;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#customNavigationLayout}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:customNavigationLayout
        */
        public static final int ActionBar_customNavigationLayout = 13;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#displayOptions}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>useLogo</code></td><td>0x1</td><td></td></tr>
<tr><td><code>showHome</code></td><td>0x2</td><td></td></tr>
<tr><td><code>homeAsUp</code></td><td>0x4</td><td></td></tr>
<tr><td><code>showTitle</code></td><td>0x8</td><td></td></tr>
<tr><td><code>showCustom</code></td><td>0x10</td><td></td></tr>
<tr><td><code>disableHome</code></td><td>0x20</td><td></td></tr>
</table>
          @attr name com.example.filewrite:displayOptions
        */
        public static final int ActionBar_displayOptions = 3;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#divider}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:divider
        */
        public static final int ActionBar_divider = 9;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#height}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:height
        */
        public static final int ActionBar_height = 0;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#homeLayout}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:homeLayout
        */
        public static final int ActionBar_homeLayout = 14;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#icon}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:icon
        */
        public static final int ActionBar_icon = 7;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#indeterminateProgressStyle}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:indeterminateProgressStyle
        */
        public static final int ActionBar_indeterminateProgressStyle = 16;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#itemPadding}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:itemPadding
        */
        public static final int ActionBar_itemPadding = 18;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#logo}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:logo
        */
        public static final int ActionBar_logo = 8;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#navigationMode}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>normal</code></td><td>0</td><td></td></tr>
<tr><td><code>listMode</code></td><td>1</td><td></td></tr>
<tr><td><code>tabMode</code></td><td>2</td><td></td></tr>
</table>
          @attr name com.example.filewrite:navigationMode
        */
        public static final int ActionBar_navigationMode = 2;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#progressBarPadding}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:progressBarPadding
        */
        public static final int ActionBar_progressBarPadding = 17;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#progressBarStyle}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:progressBarStyle
        */
        public static final int ActionBar_progressBarStyle = 15;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#subtitle}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:subtitle
        */
        public static final int ActionBar_subtitle = 4;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#subtitleTextStyle}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:subtitleTextStyle
        */
        public static final int ActionBar_subtitleTextStyle = 6;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#title}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:title
        */
        public static final int ActionBar_title = 1;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#titleTextStyle}
          attribute's value can be found in the {@link #ActionBar} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:titleTextStyle
        */
        public static final int ActionBar_titleTextStyle = 5;
        /** Attributes that can be used with a ActionBarLayout.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ActionBarLayout_android_layout_gravity android:layout_gravity}</code></td><td></td></tr>
           </table>
           @see #ActionBarLayout_android_layout_gravity
         */
        public static final int[] ActionBarLayout = {
            0x010100b3
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#layout_gravity}
          attribute's value can be found in the {@link #ActionBarLayout} array.
          @attr name android:layout_gravity
        */
        public static final int ActionBarLayout_android_layout_gravity = 0;
        /** Attributes that can be used with a ActionBarWindow.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ActionBarWindow_windowActionBar com.example.filewrite:windowActionBar}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBarWindow_windowActionBarOverlay com.example.filewrite:windowActionBarOverlay}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBarWindow_windowFixedHeightMajor com.example.filewrite:windowFixedHeightMajor}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBarWindow_windowFixedHeightMinor com.example.filewrite:windowFixedHeightMinor}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBarWindow_windowFixedWidthMajor com.example.filewrite:windowFixedWidthMajor}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBarWindow_windowFixedWidthMinor com.example.filewrite:windowFixedWidthMinor}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionBarWindow_windowSplitActionBar com.example.filewrite:windowSplitActionBar}</code></td><td></td></tr>
           </table>
           @see #ActionBarWindow_windowActionBar
           @see #ActionBarWindow_windowActionBarOverlay
           @see #ActionBarWindow_windowFixedHeightMajor
           @see #ActionBarWindow_windowFixedHeightMinor
           @see #ActionBarWindow_windowFixedWidthMajor
           @see #ActionBarWindow_windowFixedWidthMinor
           @see #ActionBarWindow_windowSplitActionBar
         */
        public static final int[] ActionBarWindow = {
            0x7f010050, 0x7f010051, 0x7f010052, 0x7f010053,
            0x7f010054, 0x7f010055, 0x7f010056
        };
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#windowActionBar}
          attribute's value can be found in the {@link #ActionBarWindow} array.


          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:windowActionBar
        */
        public static final int ActionBarWindow_windowActionBar = 0;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#windowActionBarOverlay}
          attribute's value can be found in the {@link #ActionBarWindow} array.


          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:windowActionBarOverlay
        */
        public static final int ActionBarWindow_windowActionBarOverlay = 1;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#windowFixedHeightMajor}
          attribute's value can be found in the {@link #ActionBarWindow} array.


          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:windowFixedHeightMajor
        */
        public static final int ActionBarWindow_windowFixedHeightMajor = 6;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#windowFixedHeightMinor}
          attribute's value can be found in the {@link #ActionBarWindow} array.


          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:windowFixedHeightMinor
        */
        public static final int ActionBarWindow_windowFixedHeightMinor = 4;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#windowFixedWidthMajor}
          attribute's value can be found in the {@link #ActionBarWindow} array.


          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:windowFixedWidthMajor
        */
        public static final int ActionBarWindow_windowFixedWidthMajor = 3;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#windowFixedWidthMinor}
          attribute's value can be found in the {@link #ActionBarWindow} array.


          <p>May be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>May be a fractional value, which is a floating point number appended with either % or %p, such as "<code>14.5%</code>".
The % suffix always means a percentage of the base size; the optional %p suffix provides a size relative to
some parent container.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:windowFixedWidthMinor
        */
        public static final int ActionBarWindow_windowFixedWidthMinor = 5;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#windowSplitActionBar}
          attribute's value can be found in the {@link #ActionBarWindow} array.


          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:windowSplitActionBar
        */
        public static final int ActionBarWindow_windowSplitActionBar = 2;
        /** Attributes that can be used with a ActionMenuItemView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ActionMenuItemView_android_minWidth android:minWidth}</code></td><td></td></tr>
           </table>
           @see #ActionMenuItemView_android_minWidth
         */
        public static final int[] ActionMenuItemView = {
            0x0101013f
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#minWidth}
          attribute's value can be found in the {@link #ActionMenuItemView} array.
          @attr name android:minWidth
        */
        public static final int ActionMenuItemView_android_minWidth = 0;
        /** Attributes that can be used with a ActionMenuView.
         */
        public static final int[] ActionMenuView = {
            
        };
        /** Attributes that can be used with a ActionMode.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ActionMode_background com.example.filewrite:background}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionMode_backgroundSplit com.example.filewrite:backgroundSplit}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionMode_height com.example.filewrite:height}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionMode_subtitleTextStyle com.example.filewrite:subtitleTextStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #ActionMode_titleTextStyle com.example.filewrite:titleTextStyle}</code></td><td></td></tr>
           </table>
           @see #ActionMode_background
           @see #ActionMode_backgroundSplit
           @see #ActionMode_height
           @see #ActionMode_subtitleTextStyle
           @see #ActionMode_titleTextStyle
         */
        public static final int[] ActionMode = {
            0x7f010020, 0x7f010042, 0x7f010043, 0x7f010047,
            0x7f010049
        };
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#background}
          attribute's value can be found in the {@link #ActionMode} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:background
        */
        public static final int ActionMode_background = 3;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#backgroundSplit}
          attribute's value can be found in the {@link #ActionMode} array.


          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a color value, in the form of "<code>#<i>rgb</i></code>", "<code>#<i>argb</i></code>",
"<code>#<i>rrggbb</i></code>", or "<code>#<i>aarrggbb</i></code>".
          @attr name com.example.filewrite:backgroundSplit
        */
        public static final int ActionMode_backgroundSplit = 4;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#height}
          attribute's value can be found in the {@link #ActionMode} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:height
        */
        public static final int ActionMode_height = 0;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#subtitleTextStyle}
          attribute's value can be found in the {@link #ActionMode} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:subtitleTextStyle
        */
        public static final int ActionMode_subtitleTextStyle = 2;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#titleTextStyle}
          attribute's value can be found in the {@link #ActionMode} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:titleTextStyle
        */
        public static final int ActionMode_titleTextStyle = 1;
        /** Attributes that can be used with a ActivityChooserView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #ActivityChooserView_expandActivityOverflowButtonDrawable com.example.filewrite:expandActivityOverflowButtonDrawable}</code></td><td></td></tr>
           <tr><td><code>{@link #ActivityChooserView_initialActivityCount com.example.filewrite:initialActivityCount}</code></td><td></td></tr>
           </table>
           @see #ActivityChooserView_expandActivityOverflowButtonDrawable
           @see #ActivityChooserView_initialActivityCount
         */
        public static final int[] ActivityChooserView = {
            0x7f010057, 0x7f010058
        };
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#expandActivityOverflowButtonDrawable}
          attribute's value can be found in the {@link #ActivityChooserView} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:expandActivityOverflowButtonDrawable
        */
        public static final int ActivityChooserView_expandActivityOverflowButtonDrawable = 1;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#initialActivityCount}
          attribute's value can be found in the {@link #ActivityChooserView} array.


          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:initialActivityCount
        */
        public static final int ActivityChooserView_initialActivityCount = 0;
        /** Attributes that can be used with a CompatTextView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #CompatTextView_textAllCaps com.example.filewrite:textAllCaps}</code></td><td></td></tr>
           </table>
           @see #CompatTextView_textAllCaps
         */
        public static final int[] CompatTextView = {
            0x7f010059
        };
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#textAllCaps}
          attribute's value can be found in the {@link #CompatTextView} array.


          <p>May be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
<p>May be a boolean value, either "<code>true</code>" or "<code>false</code>".
          @attr name com.example.filewrite:textAllCaps
        */
        public static final int CompatTextView_textAllCaps = 0;
        /** Attributes that can be used with a LinearLayoutICS.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #LinearLayoutICS_divider com.example.filewrite:divider}</code></td><td></td></tr>
           <tr><td><code>{@link #LinearLayoutICS_dividerPadding com.example.filewrite:dividerPadding}</code></td><td></td></tr>
           <tr><td><code>{@link #LinearLayoutICS_showDividers com.example.filewrite:showDividers}</code></td><td></td></tr>
           </table>
           @see #LinearLayoutICS_divider
           @see #LinearLayoutICS_dividerPadding
           @see #LinearLayoutICS_showDividers
         */
        public static final int[] LinearLayoutICS = {
            0x7f010046, 0x7f01005a, 0x7f01005b
        };
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#divider}
          attribute's value can be found in the {@link #LinearLayoutICS} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:divider
        */
        public static final int LinearLayoutICS_divider = 0;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#dividerPadding}
          attribute's value can be found in the {@link #LinearLayoutICS} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:dividerPadding
        */
        public static final int LinearLayoutICS_dividerPadding = 2;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#showDividers}
          attribute's value can be found in the {@link #LinearLayoutICS} array.


          <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>none</code></td><td>0</td><td></td></tr>
<tr><td><code>beginning</code></td><td>1</td><td></td></tr>
<tr><td><code>middle</code></td><td>2</td><td></td></tr>
<tr><td><code>end</code></td><td>4</td><td></td></tr>
</table>
          @attr name com.example.filewrite:showDividers
        */
        public static final int LinearLayoutICS_showDividers = 1;
        /** Attributes that can be used with a MenuGroup.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #MenuGroup_android_checkableBehavior android:checkableBehavior}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuGroup_android_enabled android:enabled}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuGroup_android_id android:id}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuGroup_android_menuCategory android:menuCategory}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuGroup_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuGroup_android_visible android:visible}</code></td><td></td></tr>
           </table>
           @see #MenuGroup_android_checkableBehavior
           @see #MenuGroup_android_enabled
           @see #MenuGroup_android_id
           @see #MenuGroup_android_menuCategory
           @see #MenuGroup_android_orderInCategory
           @see #MenuGroup_android_visible
         */
        public static final int[] MenuGroup = {
            0x0101000e, 0x010100d0, 0x01010194, 0x010101de,
            0x010101df, 0x010101e0
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#checkableBehavior}
          attribute's value can be found in the {@link #MenuGroup} array.
          @attr name android:checkableBehavior
        */
        public static final int MenuGroup_android_checkableBehavior = 5;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#enabled}
          attribute's value can be found in the {@link #MenuGroup} array.
          @attr name android:enabled
        */
        public static final int MenuGroup_android_enabled = 0;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#id}
          attribute's value can be found in the {@link #MenuGroup} array.
          @attr name android:id
        */
        public static final int MenuGroup_android_id = 1;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#menuCategory}
          attribute's value can be found in the {@link #MenuGroup} array.
          @attr name android:menuCategory
        */
        public static final int MenuGroup_android_menuCategory = 3;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
          attribute's value can be found in the {@link #MenuGroup} array.
          @attr name android:orderInCategory
        */
        public static final int MenuGroup_android_orderInCategory = 4;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#visible}
          attribute's value can be found in the {@link #MenuGroup} array.
          @attr name android:visible
        */
        public static final int MenuGroup_android_visible = 2;
        /** Attributes that can be used with a MenuItem.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #MenuItem_actionLayout com.example.filewrite:actionLayout}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_actionProviderClass com.example.filewrite:actionProviderClass}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_actionViewClass com.example.filewrite:actionViewClass}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_alphabeticShortcut android:alphabeticShortcut}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_checkable android:checkable}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_checked android:checked}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_enabled android:enabled}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_icon android:icon}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_id android:id}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_menuCategory android:menuCategory}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_numericShortcut android:numericShortcut}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_onClick android:onClick}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_orderInCategory android:orderInCategory}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_title android:title}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_titleCondensed android:titleCondensed}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_android_visible android:visible}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuItem_showAsAction com.example.filewrite:showAsAction}</code></td><td></td></tr>
           </table>
           @see #MenuItem_actionLayout
           @see #MenuItem_actionProviderClass
           @see #MenuItem_actionViewClass
           @see #MenuItem_android_alphabeticShortcut
           @see #MenuItem_android_checkable
           @see #MenuItem_android_checked
           @see #MenuItem_android_enabled
           @see #MenuItem_android_icon
           @see #MenuItem_android_id
           @see #MenuItem_android_menuCategory
           @see #MenuItem_android_numericShortcut
           @see #MenuItem_android_onClick
           @see #MenuItem_android_orderInCategory
           @see #MenuItem_android_title
           @see #MenuItem_android_titleCondensed
           @see #MenuItem_android_visible
           @see #MenuItem_showAsAction
         */
        public static final int[] MenuItem = {
            0x01010002, 0x0101000e, 0x010100d0, 0x01010106,
            0x01010194, 0x010101de, 0x010101df, 0x010101e1,
            0x010101e2, 0x010101e3, 0x010101e4, 0x010101e5,
            0x0101026f, 0x7f01005c, 0x7f01005d, 0x7f01005e,
            0x7f01005f
        };
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#actionLayout}
          attribute's value can be found in the {@link #MenuItem} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:actionLayout
        */
        public static final int MenuItem_actionLayout = 14;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#actionProviderClass}
          attribute's value can be found in the {@link #MenuItem} array.


          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:actionProviderClass
        */
        public static final int MenuItem_actionProviderClass = 16;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#actionViewClass}
          attribute's value can be found in the {@link #MenuItem} array.


          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:actionViewClass
        */
        public static final int MenuItem_actionViewClass = 15;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#alphabeticShortcut}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:alphabeticShortcut
        */
        public static final int MenuItem_android_alphabeticShortcut = 9;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#checkable}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:checkable
        */
        public static final int MenuItem_android_checkable = 11;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#checked}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:checked
        */
        public static final int MenuItem_android_checked = 3;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#enabled}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:enabled
        */
        public static final int MenuItem_android_enabled = 1;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#icon}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:icon
        */
        public static final int MenuItem_android_icon = 0;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#id}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:id
        */
        public static final int MenuItem_android_id = 2;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#menuCategory}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:menuCategory
        */
        public static final int MenuItem_android_menuCategory = 5;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#numericShortcut}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:numericShortcut
        */
        public static final int MenuItem_android_numericShortcut = 10;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#onClick}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:onClick
        */
        public static final int MenuItem_android_onClick = 12;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#orderInCategory}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:orderInCategory
        */
        public static final int MenuItem_android_orderInCategory = 6;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#title}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:title
        */
        public static final int MenuItem_android_title = 7;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#titleCondensed}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:titleCondensed
        */
        public static final int MenuItem_android_titleCondensed = 8;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#visible}
          attribute's value can be found in the {@link #MenuItem} array.
          @attr name android:visible
        */
        public static final int MenuItem_android_visible = 4;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#showAsAction}
          attribute's value can be found in the {@link #MenuItem} array.


          <p>Must be one or more (separated by '|') of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>never</code></td><td>0</td><td></td></tr>
<tr><td><code>ifRoom</code></td><td>1</td><td></td></tr>
<tr><td><code>always</code></td><td>2</td><td></td></tr>
<tr><td><code>withText</code></td><td>4</td><td></td></tr>
<tr><td><code>collapseActionView</code></td><td>8</td><td></td></tr>
</table>
          @attr name com.example.filewrite:showAsAction
        */
        public static final int MenuItem_showAsAction = 13;
        /** Attributes that can be used with a MenuView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #MenuView_android_headerBackground android:headerBackground}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuView_android_horizontalDivider android:horizontalDivider}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuView_android_itemBackground android:itemBackground}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuView_android_itemIconDisabledAlpha android:itemIconDisabledAlpha}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuView_android_itemTextAppearance android:itemTextAppearance}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuView_android_preserveIconSpacing android:preserveIconSpacing}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuView_android_verticalDivider android:verticalDivider}</code></td><td></td></tr>
           <tr><td><code>{@link #MenuView_android_windowAnimationStyle android:windowAnimationStyle}</code></td><td></td></tr>
           </table>
           @see #MenuView_android_headerBackground
           @see #MenuView_android_horizontalDivider
           @see #MenuView_android_itemBackground
           @see #MenuView_android_itemIconDisabledAlpha
           @see #MenuView_android_itemTextAppearance
           @see #MenuView_android_preserveIconSpacing
           @see #MenuView_android_verticalDivider
           @see #MenuView_android_windowAnimationStyle
         */
        public static final int[] MenuView = {
            0x010100ae, 0x0101012c, 0x0101012d, 0x0101012e,
            0x0101012f, 0x01010130, 0x01010131, 0x010103f8
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#headerBackground}
          attribute's value can be found in the {@link #MenuView} array.
          @attr name android:headerBackground
        */
        public static final int MenuView_android_headerBackground = 4;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#horizontalDivider}
          attribute's value can be found in the {@link #MenuView} array.
          @attr name android:horizontalDivider
        */
        public static final int MenuView_android_horizontalDivider = 2;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#itemBackground}
          attribute's value can be found in the {@link #MenuView} array.
          @attr name android:itemBackground
        */
        public static final int MenuView_android_itemBackground = 5;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#itemIconDisabledAlpha}
          attribute's value can be found in the {@link #MenuView} array.
          @attr name android:itemIconDisabledAlpha
        */
        public static final int MenuView_android_itemIconDisabledAlpha = 6;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#itemTextAppearance}
          attribute's value can be found in the {@link #MenuView} array.
          @attr name android:itemTextAppearance
        */
        public static final int MenuView_android_itemTextAppearance = 1;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#preserveIconSpacing}
          attribute's value can be found in the {@link #MenuView} array.
          @attr name android:preserveIconSpacing
        */
        public static final int MenuView_android_preserveIconSpacing = 7;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#verticalDivider}
          attribute's value can be found in the {@link #MenuView} array.
          @attr name android:verticalDivider
        */
        public static final int MenuView_android_verticalDivider = 3;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#windowAnimationStyle}
          attribute's value can be found in the {@link #MenuView} array.
          @attr name android:windowAnimationStyle
        */
        public static final int MenuView_android_windowAnimationStyle = 0;
        /** Attributes that can be used with a SearchView.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #SearchView_android_imeOptions android:imeOptions}</code></td><td></td></tr>
           <tr><td><code>{@link #SearchView_android_inputType android:inputType}</code></td><td></td></tr>
           <tr><td><code>{@link #SearchView_android_maxWidth android:maxWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #SearchView_iconifiedByDefault com.example.filewrite:iconifiedByDefault}</code></td><td></td></tr>
           <tr><td><code>{@link #SearchView_queryHint com.example.filewrite:queryHint}</code></td><td></td></tr>
           </table>
           @see #SearchView_android_imeOptions
           @see #SearchView_android_inputType
           @see #SearchView_android_maxWidth
           @see #SearchView_iconifiedByDefault
           @see #SearchView_queryHint
         */
        public static final int[] SearchView = {
            0x0101011f, 0x01010220, 0x01010264, 0x7f010060,
            0x7f010061
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#imeOptions}
          attribute's value can be found in the {@link #SearchView} array.
          @attr name android:imeOptions
        */
        public static final int SearchView_android_imeOptions = 2;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#inputType}
          attribute's value can be found in the {@link #SearchView} array.
          @attr name android:inputType
        */
        public static final int SearchView_android_inputType = 1;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#maxWidth}
          attribute's value can be found in the {@link #SearchView} array.
          @attr name android:maxWidth
        */
        public static final int SearchView_android_maxWidth = 0;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#iconifiedByDefault}
          attribute's value can be found in the {@link #SearchView} array.


          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:iconifiedByDefault
        */
        public static final int SearchView_iconifiedByDefault = 3;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#queryHint}
          attribute's value can be found in the {@link #SearchView} array.


          <p>Must be a string value, using '\\;' to escape characters such as '\\n' or '\\uxxxx' for a unicode character.
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:queryHint
        */
        public static final int SearchView_queryHint = 4;
        /** Attributes that can be used with a Spinner.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #Spinner_android_dropDownHorizontalOffset android:dropDownHorizontalOffset}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_android_dropDownSelector android:dropDownSelector}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_android_dropDownVerticalOffset android:dropDownVerticalOffset}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_android_dropDownWidth android:dropDownWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_android_gravity android:gravity}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_android_popupBackground android:popupBackground}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_disableChildrenWhenDisabled com.example.filewrite:disableChildrenWhenDisabled}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_popupPromptView com.example.filewrite:popupPromptView}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_prompt com.example.filewrite:prompt}</code></td><td></td></tr>
           <tr><td><code>{@link #Spinner_spinnerMode com.example.filewrite:spinnerMode}</code></td><td></td></tr>
           </table>
           @see #Spinner_android_dropDownHorizontalOffset
           @see #Spinner_android_dropDownSelector
           @see #Spinner_android_dropDownVerticalOffset
           @see #Spinner_android_dropDownWidth
           @see #Spinner_android_gravity
           @see #Spinner_android_popupBackground
           @see #Spinner_disableChildrenWhenDisabled
           @see #Spinner_popupPromptView
           @see #Spinner_prompt
           @see #Spinner_spinnerMode
         */
        public static final int[] Spinner = {
            0x010100af, 0x01010175, 0x01010176, 0x01010262,
            0x010102ac, 0x010102ad, 0x7f010062, 0x7f010063,
            0x7f010064, 0x7f010065
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#dropDownHorizontalOffset}
          attribute's value can be found in the {@link #Spinner} array.
          @attr name android:dropDownHorizontalOffset
        */
        public static final int Spinner_android_dropDownHorizontalOffset = 4;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#dropDownSelector}
          attribute's value can be found in the {@link #Spinner} array.
          @attr name android:dropDownSelector
        */
        public static final int Spinner_android_dropDownSelector = 1;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#dropDownVerticalOffset}
          attribute's value can be found in the {@link #Spinner} array.
          @attr name android:dropDownVerticalOffset
        */
        public static final int Spinner_android_dropDownVerticalOffset = 5;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#dropDownWidth}
          attribute's value can be found in the {@link #Spinner} array.
          @attr name android:dropDownWidth
        */
        public static final int Spinner_android_dropDownWidth = 3;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#gravity}
          attribute's value can be found in the {@link #Spinner} array.
          @attr name android:gravity
        */
        public static final int Spinner_android_gravity = 0;
        /**
          <p>This symbol is the offset where the {@link android.R.attr#popupBackground}
          attribute's value can be found in the {@link #Spinner} array.
          @attr name android:popupBackground
        */
        public static final int Spinner_android_popupBackground = 2;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#disableChildrenWhenDisabled}
          attribute's value can be found in the {@link #Spinner} array.


          <p>Must be a boolean value, either "<code>true</code>" or "<code>false</code>".
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:disableChildrenWhenDisabled
        */
        public static final int Spinner_disableChildrenWhenDisabled = 9;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#popupPromptView}
          attribute's value can be found in the {@link #Spinner} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:popupPromptView
        */
        public static final int Spinner_popupPromptView = 8;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#prompt}
          attribute's value can be found in the {@link #Spinner} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:prompt
        */
        public static final int Spinner_prompt = 6;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#spinnerMode}
          attribute's value can be found in the {@link #Spinner} array.


          <p>Must be one of the following constant values.</p>
<table>
<colgroup align="left" />
<colgroup align="left" />
<colgroup align="left" />
<tr><th>Constant</th><th>Value</th><th>Description</th></tr>
<tr><td><code>dialog</code></td><td>0</td><td></td></tr>
<tr><td><code>dropdown</code></td><td>1</td><td></td></tr>
</table>
          @attr name com.example.filewrite:spinnerMode
        */
        public static final int Spinner_spinnerMode = 7;
        /** Attributes that can be used with a Theme.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #Theme_actionDropDownStyle com.example.filewrite:actionDropDownStyle}</code></td><td></td></tr>
           <tr><td><code>{@link #Theme_dropdownListPreferredItemHeight com.example.filewrite:dropdownListPreferredItemHeight}</code></td><td></td></tr>
           <tr><td><code>{@link #Theme_listChoiceBackgroundIndicator com.example.filewrite:listChoiceBackgroundIndicator}</code></td><td></td></tr>
           <tr><td><code>{@link #Theme_panelMenuListTheme com.example.filewrite:panelMenuListTheme}</code></td><td></td></tr>
           <tr><td><code>{@link #Theme_panelMenuListWidth com.example.filewrite:panelMenuListWidth}</code></td><td></td></tr>
           <tr><td><code>{@link #Theme_popupMenuStyle com.example.filewrite:popupMenuStyle}</code></td><td></td></tr>
           </table>
           @see #Theme_actionDropDownStyle
           @see #Theme_dropdownListPreferredItemHeight
           @see #Theme_listChoiceBackgroundIndicator
           @see #Theme_panelMenuListTheme
           @see #Theme_panelMenuListWidth
           @see #Theme_popupMenuStyle
         */
        public static final int[] Theme = {
            0x7f010066, 0x7f010067, 0x7f010068, 0x7f010069,
            0x7f01006a, 0x7f01006b
        };
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#actionDropDownStyle}
          attribute's value can be found in the {@link #Theme} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:actionDropDownStyle
        */
        public static final int Theme_actionDropDownStyle = 0;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#dropdownListPreferredItemHeight}
          attribute's value can be found in the {@link #Theme} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:dropdownListPreferredItemHeight
        */
        public static final int Theme_dropdownListPreferredItemHeight = 1;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#listChoiceBackgroundIndicator}
          attribute's value can be found in the {@link #Theme} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:listChoiceBackgroundIndicator
        */
        public static final int Theme_listChoiceBackgroundIndicator = 5;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#panelMenuListTheme}
          attribute's value can be found in the {@link #Theme} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:panelMenuListTheme
        */
        public static final int Theme_panelMenuListTheme = 4;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#panelMenuListWidth}
          attribute's value can be found in the {@link #Theme} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:panelMenuListWidth
        */
        public static final int Theme_panelMenuListWidth = 3;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#popupMenuStyle}
          attribute's value can be found in the {@link #Theme} array.


          <p>Must be a reference to another resource, in the form "<code>@[+][<i>package</i>:]<i>type</i>:<i>name</i></code>"
or to a theme attribute in the form "<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>".
          @attr name com.example.filewrite:popupMenuStyle
        */
        public static final int Theme_popupMenuStyle = 2;
        /** Attributes that can be used with a View.
           <p>Includes the following attributes:</p>
           <table>
           <colgroup align="left" />
           <colgroup align="left" />
           <tr><th>Attribute</th><th>Description</th></tr>
           <tr><td><code>{@link #View_android_focusable android:focusable}</code></td><td></td></tr>
           <tr><td><code>{@link #View_paddingEnd com.example.filewrite:paddingEnd}</code></td><td></td></tr>
           <tr><td><code>{@link #View_paddingStart com.example.filewrite:paddingStart}</code></td><td></td></tr>
           </table>
           @see #View_android_focusable
           @see #View_paddingEnd
           @see #View_paddingStart
         */
        public static final int[] View = {
            0x010100da, 0x7f01006c, 0x7f01006d
        };
        /**
          <p>This symbol is the offset where the {@link android.R.attr#focusable}
          attribute's value can be found in the {@link #View} array.
          @attr name android:focusable
        */
        public static final int View_android_focusable = 0;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#paddingEnd}
          attribute's value can be found in the {@link #View} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:paddingEnd
        */
        public static final int View_paddingEnd = 2;
        /**
          <p>This symbol is the offset where the {@link com.example.filewrite.R.attr#paddingStart}
          attribute's value can be found in the {@link #View} array.


          <p>Must be a dimension value, which is a floating point number appended with a unit such as "<code>14.5sp</code>".
Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size),
in (inches), mm (millimeters).
<p>This may also be a reference to a resource (in the form
"<code>@[<i>package</i>:]<i>type</i>:<i>name</i></code>") or
theme attribute (in the form
"<code>?[<i>package</i>:][<i>type</i>:]<i>name</i></code>")
containing a value of this type.
          @attr name com.example.filewrite:paddingStart
        */
        public static final int View_paddingStart = 1;
    };
}