├── Bluetooth ├── .classpath ├── .idea │ ├── .name │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── bin │ ├── AndroidManifest.xml │ └── classes │ │ └── com │ │ └── immqy │ │ ├── Bluetooth$1.class │ │ ├── Bluetooth$2.class │ │ ├── Bluetooth$3.class │ │ ├── Bluetooth$4.class │ │ ├── Bluetooth.class │ │ ├── BluetoothClient.class │ │ ├── BuildConfig.class │ │ ├── ComminuteActivity$1.class │ │ ├── ComminuteActivity$2.class │ │ ├── ComminuteActivity$BluetoothReceiver.class │ │ ├── ComminuteActivity.class │ │ ├── MainActivity$1.class │ │ ├── MainActivity$2.class │ │ ├── MainActivity$BluetoothReceiver$1.class │ │ ├── MainActivity$BluetoothReceiver.class │ │ ├── MainActivity.class │ │ ├── OpenService$1.class │ │ ├── OpenService.class │ │ ├── R$array.class │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ ├── R$style.class │ │ ├── R$styleable.class │ │ ├── R.class │ │ ├── SearchActivity$1.class │ │ ├── SearchActivity$2.class │ │ ├── SearchActivity$3.class │ │ ├── SearchActivity$4.class │ │ ├── SearchActivity.class │ │ ├── SettingActivity$1.class │ │ ├── SettingActivity$2.class │ │ ├── SettingActivity$3.class │ │ ├── SettingActivity$4.class │ │ ├── SettingActivity$5.class │ │ ├── SettingActivity.class │ │ ├── bean │ │ └── PropertiesProvider.class │ │ ├── utils │ │ ├── BlueSearchUtils$1$1.class │ │ ├── BlueSearchUtils$1.class │ │ ├── BlueSearchUtils.class │ │ ├── BluetoothUtils$1.class │ │ ├── BluetoothUtils.class │ │ └── LockUtils.class │ │ └── widget │ │ └── SwitchButton.class ├── gen │ └── com │ │ └── immqy │ │ ├── BuildConfig.java │ │ └── R.java ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── bkg_switch.png │ │ ├── btn_slip.png │ │ ├── ic_launcher.png │ │ ├── lock.jpg │ │ ├── open_lock.jpg │ │ ├── setting_switch.9.png │ │ ├── setting_switch_off_bg.9.png │ │ ├── setting_switch_on_bg.9.png │ │ ├── switch_bg_disabled_holo_dark.9.png │ │ ├── switch_bg_disabled_holo_light.9.png │ │ ├── switch_bg_focused_holo_dark.9.png │ │ ├── switch_bg_focused_holo_light.9.png │ │ ├── switch_bg_holo_dark.9.png │ │ ├── switch_bg_holo_light.9.png │ │ ├── switch_thumb_activated_holo_dark.9.png │ │ ├── switch_thumb_activated_holo_light.9.png │ │ ├── switch_thumb_disabled_holo_dark.9.png │ │ ├── switch_thumb_disabled_holo_light.9.png │ │ ├── switch_thumb_holo_dark.9.png │ │ ├── switch_thumb_holo_light.9.png │ │ ├── switch_thumb_pressed_holo_dark.9.png │ │ └── switch_thumb_pressed_holo_light.9.png │ ├── drawable │ │ ├── app_image.png │ │ ├── switch_inner_holo_dark.xml │ │ ├── switch_inner_holo_light.xml │ │ ├── switch_track_holo_dark.xml │ │ └── switch_track_holo_light.xml │ ├── layout │ │ ├── anothermainlayout.xml │ │ ├── automatic_open_layout.xml │ │ ├── connect_layout.xml │ │ ├── disautomatic_layout.xml │ │ ├── disautomatic_open_layout.xml │ │ ├── main.xml │ │ ├── search_layout.xml │ │ ├── searchlayout.xml │ │ ├── setting_layout.xml │ │ ├── settinglayout.xml │ │ └── spinner_item.xml │ └── values │ │ ├── attrs.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── immqy │ ├── Bluetooth.java │ ├── BluetoothClient.java │ ├── ComminuteActivity.java │ ├── MainActivity.java │ ├── OpenService.java │ ├── SearchActivity.java │ ├── SettingActivity.java │ ├── bean │ └── PropertiesProvider.java │ ├── utils │ ├── BlueSearchUtils.java │ ├── BluetoothUtils.java │ └── LockUtils.java │ └── widget │ └── SwitchButton.java ├── Pratice ├── 1.txt ├── 2.txt └── 3.txt └── README.md /Bluetooth/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /Bluetooth/.idea/.name: -------------------------------------------------------------------------------- 1 | Bluetooth -------------------------------------------------------------------------------- /Bluetooth/.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /Bluetooth/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /Bluetooth/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /Bluetooth/.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Bluetooth/.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Bluetooth/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5 | -------------------------------------------------------------------------------- /Bluetooth/.idea/uiDesigner.xml: -------------------------------------------------------------------------------- 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 | -------------------------------------------------------------------------------- /Bluetooth/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /Bluetooth/.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 14 | 15 | 25 | 26 | 27 | 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 | 91 | 92 | 93 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 119 | 120 | 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 | 270 | 271 | 272 | 273 | 274 | 275 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 312 | 313 | 314 | 315 | 318 | 319 | 322 | 323 | 324 | 325 | 328 | 329 | 332 | 333 | 336 | 337 | 340 | 341 | 342 | 343 | 346 | 347 | 350 | 351 | 354 | 355 | 356 | 357 | 360 | 361 | 364 | 365 | 368 | 369 | 370 | 371 | 374 | 375 | 378 | 379 | 382 | 383 | 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 | 447 | 448 | 449 | 463 | 464 | 465 | 466 | 470 | 471 | 472 | 473 | 474 | 475 | 476 | 477 | 481 | 482 | 483 | 499 | 500 | 507 | 508 | 509 | 520 | 521 | 522 | 540 | 547 | 548 | 561 | 562 | 563 | 577 | 578 | 579 | 580 | 581 | 582 | 583 | 597 | 598 | 599 | 615 | 616 | 617 | 618 | 619 | 620 | 621 | 622 | 623 | 624 | 625 | 626 | localhost 627 | 5050 628 | 629 | 630 | 631 | 632 | 648 | 649 | 650 | 651 | 1372342104198 652 | 1372342104198 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 | 710 | 711 | 722 | 764 | 765 | 766 | 767 | 768 | 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 | 899 | 900 | 901 | 902 | 903 | 904 | Android 905 | 906 | 911 | 912 | 913 | 914 | 915 | 916 | 917 | 922 | 923 | 924 | 925 | 926 | 927 | 1.6 928 | 929 | 934 | 935 | 936 | 937 | 938 | 939 | BluetoothTest 940 | 941 | 947 | 948 | 949 | 950 | 951 | 952 | 1.6 953 | 954 | 959 | 960 | 961 | 962 | 963 | 964 | 965 | 970 | 971 | 972 | 973 | 974 | 975 | 976 | 977 | -------------------------------------------------------------------------------- /Bluetooth/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | DuBluetooth 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /Bluetooth/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=UTF-8 3 | -------------------------------------------------------------------------------- /Bluetooth/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /Bluetooth/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /Bluetooth/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/Bluetooth$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/Bluetooth$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/Bluetooth$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/Bluetooth$2.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/Bluetooth$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/Bluetooth$3.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/Bluetooth$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/Bluetooth$4.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/Bluetooth.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/Bluetooth.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/BluetoothClient.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/BluetoothClient.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/BuildConfig.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/ComminuteActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/ComminuteActivity$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/ComminuteActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/ComminuteActivity$2.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/ComminuteActivity$BluetoothReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/ComminuteActivity$BluetoothReceiver.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/ComminuteActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/ComminuteActivity.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/MainActivity$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/MainActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/MainActivity$2.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/MainActivity$BluetoothReceiver$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/MainActivity$BluetoothReceiver$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/MainActivity$BluetoothReceiver.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/MainActivity$BluetoothReceiver.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/MainActivity.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/OpenService$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/OpenService$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/OpenService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/OpenService.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R$array.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R$array.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R$attr.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R$drawable.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R$id.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R$layout.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R$string.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R$style.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R$styleable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R$styleable.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/R.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SearchActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SearchActivity$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SearchActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SearchActivity$2.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SearchActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SearchActivity$3.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SearchActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SearchActivity$4.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SearchActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SearchActivity.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SettingActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SettingActivity$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SettingActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SettingActivity$2.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SettingActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SettingActivity$3.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SettingActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SettingActivity$4.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SettingActivity$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SettingActivity$5.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/SettingActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/SettingActivity.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/bean/PropertiesProvider.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/bean/PropertiesProvider.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/utils/BlueSearchUtils$1$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/utils/BlueSearchUtils$1$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/utils/BlueSearchUtils$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/utils/BlueSearchUtils$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/utils/BlueSearchUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/utils/BlueSearchUtils.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/utils/BluetoothUtils$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/utils/BluetoothUtils$1.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/utils/BluetoothUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/utils/BluetoothUtils.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/utils/LockUtils.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/utils/LockUtils.class -------------------------------------------------------------------------------- /Bluetooth/bin/classes/com/immqy/widget/SwitchButton.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/bin/classes/com/immqy/widget/SwitchButton.class -------------------------------------------------------------------------------- /Bluetooth/gen/com/immqy/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.immqy; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /Bluetooth/gen/com/immqy/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.immqy; 9 | 10 | public final class R { 11 | public static final class array { 12 | public static final int array_spinner=0x7f050000; 13 | } 14 | public static final class attr { 15 | /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". 16 | Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), 17 | in (inches), mm (millimeters). 18 |

This may also be a reference to a resource (in the form 19 | "@[package:]type:name") or 20 | theme attribute (in the form 21 | "?[package:][type:]name") 22 | containing a value of this type. 23 | */ 24 | public static final int switchMinWidth=0x7f010007; 25 | /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". 26 | Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), 27 | in (inches), mm (millimeters). 28 |

This may also be a reference to a resource (in the form 29 | "@[package:]type:name") or 30 | theme attribute (in the form 31 | "?[package:][type:]name") 32 | containing a value of this type. 33 | */ 34 | public static final int switchPadding=0x7f010008; 35 | /**

Must be a reference to another resource, in the form "@[+][package:]type:name" 36 | or to a theme attribute in the form "?[package:][type:]name". 37 | */ 38 | public static final int switchStyle=0x7f010000; 39 | /**

Must be a reference to another resource, in the form "@[+][package:]type:name" 40 | or to a theme attribute in the form "?[package:][type:]name". 41 | */ 42 | public static final int switchTextAppearance=0x7f010006; 43 | /**

Must be a boolean value, either "true" or "false". 44 |

This may also be a reference to a resource (in the form 45 | "@[package:]type:name") or 46 | theme attribute (in the form 47 | "?[package:][type:]name") 48 | containing a value of this type. 49 | */ 50 | public static final int textAllCaps=0x7f010009; 51 | /**

Must be a reference to another resource, in the form "@[+][package:]type:name" 52 | or to a theme attribute in the form "?[package:][type:]name". 53 | */ 54 | public static final int textOff=0x7f010004; 55 | /**

Must be a reference to another resource, in the form "@[+][package:]type:name" 56 | or to a theme attribute in the form "?[package:][type:]name". 57 | */ 58 | public static final int textOn=0x7f010003; 59 | /**

Must be a reference to another resource, in the form "@[+][package:]type:name" 60 | or to a theme attribute in the form "?[package:][type:]name". 61 | */ 62 | public static final int thumb=0x7f010001; 63 | /**

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". 64 | Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), 65 | in (inches), mm (millimeters). 66 |

This may also be a reference to a resource (in the form 67 | "@[package:]type:name") or 68 | theme attribute (in the form 69 | "?[package:][type:]name") 70 | containing a value of this type. 71 | */ 72 | public static final int thumbTextPadding=0x7f010005; 73 | /**

Must be a reference to another resource, in the form "@[+][package:]type:name" 74 | or to a theme attribute in the form "?[package:][type:]name". 75 | */ 76 | public static final int track=0x7f010002; 77 | } 78 | public static final class drawable { 79 | public static final int app_image=0x7f020000; 80 | public static final int background_color=0x7f02001b; 81 | public static final int bkg_switch=0x7f020001; 82 | public static final int btn_slip=0x7f020002; 83 | public static final int ic_launcher=0x7f020003; 84 | public static final int lock=0x7f020004; 85 | public static final int open_lock=0x7f020005; 86 | public static final int setting_switch=0x7f020006; 87 | public static final int setting_switch_off_bg=0x7f020007; 88 | public static final int setting_switch_on_bg=0x7f020008; 89 | public static final int switch_bg_disabled_holo_dark=0x7f020009; 90 | public static final int switch_bg_disabled_holo_light=0x7f02000a; 91 | public static final int switch_bg_focused_holo_dark=0x7f02000b; 92 | public static final int switch_bg_focused_holo_light=0x7f02000c; 93 | public static final int switch_bg_holo_dark=0x7f02000d; 94 | public static final int switch_bg_holo_light=0x7f02000e; 95 | public static final int switch_inner_holo_dark=0x7f02000f; 96 | public static final int switch_inner_holo_light=0x7f020010; 97 | public static final int switch_thumb_activated_holo_dark=0x7f020011; 98 | public static final int switch_thumb_activated_holo_light=0x7f020012; 99 | public static final int switch_thumb_disabled_holo_dark=0x7f020013; 100 | public static final int switch_thumb_disabled_holo_light=0x7f020014; 101 | public static final int switch_thumb_holo_dark=0x7f020015; 102 | public static final int switch_thumb_holo_light=0x7f020016; 103 | public static final int switch_thumb_pressed_holo_dark=0x7f020017; 104 | public static final int switch_thumb_pressed_holo_light=0x7f020018; 105 | public static final int switch_track_holo_dark=0x7f020019; 106 | public static final int switch_track_holo_light=0x7f02001a; 107 | } 108 | public static final class id { 109 | public static final int automatic=0x7f07000d; 110 | public static final int choices=0x7f07000c; 111 | public static final int delay=0x7f070009; 112 | public static final int disAutomatic=0x7f07000e; 113 | public static final int image=0x7f07000b; 114 | public static final int item=0x7f070012; 115 | public static final int key=0x7f070011; 116 | public static final int list=0x7f070006; 117 | public static final int lockBt=0x7f070005; 118 | public static final int messageText=0x7f070003; 119 | public static final int openBt=0x7f070001; 120 | public static final int save=0x7f070010; 121 | public static final int sendBt=0x7f070002; 122 | public static final int setting=0x7f070000; 123 | public static final int settingBt=0x7f070004; 124 | public static final int spinner=0x7f07000a; 125 | public static final int switch_button=0x7f070008; 126 | public static final int text=0x7f070007; 127 | public static final int time=0x7f07000f; 128 | } 129 | public static final class layout { 130 | public static final int anothermainlayout=0x7f030000; 131 | public static final int automatic_open_layout=0x7f030001; 132 | public static final int connect_layout=0x7f030002; 133 | public static final int disautomatic_layout=0x7f030003; 134 | public static final int disautomatic_open_layout=0x7f030004; 135 | public static final int main=0x7f030005; 136 | public static final int search_layout=0x7f030006; 137 | public static final int searchlayout=0x7f030007; 138 | public static final int setting_layout=0x7f030008; 139 | public static final int settinglayout=0x7f030009; 140 | public static final int spinner_item=0x7f03000a; 141 | } 142 | public static final class string { 143 | public static final int app_name=0x7f040000; 144 | public static final int switch_off=0x7f040001; 145 | public static final int switch_on=0x7f040002; 146 | } 147 | public static final class style { 148 | public static final int AppTheme=0x7f060000; 149 | public static final int holo_SwitchStyle=0x7f060001; 150 | public static final int light_SwitchStyle=0x7f060002; 151 | } 152 | public static final class styleable { 153 | /** Attributes that can be used with a Switch. 154 |

Includes the following attributes:

155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 |
AttributeDescription
{@link #Switch_switchMinWidth com.immqy:switchMinWidth}
{@link #Switch_switchPadding com.immqy:switchPadding}
{@link #Switch_switchTextAppearance com.immqy:switchTextAppearance}
{@link #Switch_textOff com.immqy:textOff}
{@link #Switch_textOn com.immqy:textOn}
{@link #Switch_thumb com.immqy:thumb}
{@link #Switch_thumbTextPadding com.immqy:thumbTextPadding}
{@link #Switch_track com.immqy:track}
168 | @see #Switch_switchMinWidth 169 | @see #Switch_switchPadding 170 | @see #Switch_switchTextAppearance 171 | @see #Switch_textOff 172 | @see #Switch_textOn 173 | @see #Switch_thumb 174 | @see #Switch_thumbTextPadding 175 | @see #Switch_track 176 | */ 177 | public static final int[] Switch = { 178 | 0x7f010001, 0x7f010002, 0x7f010003, 0x7f010004, 179 | 0x7f010005, 0x7f010006, 0x7f010007, 0x7f010008 180 | }; 181 | /** 182 |

This symbol is the offset where the {@link com.immqy.R.attr#switchMinWidth} 183 | attribute's value can be found in the {@link #Switch} array. 184 | 185 | 186 |

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". 187 | Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), 188 | in (inches), mm (millimeters). 189 |

This may also be a reference to a resource (in the form 190 | "@[package:]type:name") or 191 | theme attribute (in the form 192 | "?[package:][type:]name") 193 | containing a value of this type. 194 | @attr name com.immqy:switchMinWidth 195 | */ 196 | public static final int Switch_switchMinWidth = 6; 197 | /** 198 |

This symbol is the offset where the {@link com.immqy.R.attr#switchPadding} 199 | attribute's value can be found in the {@link #Switch} array. 200 | 201 | 202 |

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". 203 | Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), 204 | in (inches), mm (millimeters). 205 |

This may also be a reference to a resource (in the form 206 | "@[package:]type:name") or 207 | theme attribute (in the form 208 | "?[package:][type:]name") 209 | containing a value of this type. 210 | @attr name com.immqy:switchPadding 211 | */ 212 | public static final int Switch_switchPadding = 7; 213 | /** 214 |

This symbol is the offset where the {@link com.immqy.R.attr#switchTextAppearance} 215 | attribute's value can be found in the {@link #Switch} array. 216 | 217 | 218 |

Must be a reference to another resource, in the form "@[+][package:]type:name" 219 | or to a theme attribute in the form "?[package:][type:]name". 220 | @attr name com.immqy:switchTextAppearance 221 | */ 222 | public static final int Switch_switchTextAppearance = 5; 223 | /** 224 |

This symbol is the offset where the {@link com.immqy.R.attr#textOff} 225 | attribute's value can be found in the {@link #Switch} array. 226 | 227 | 228 |

Must be a reference to another resource, in the form "@[+][package:]type:name" 229 | or to a theme attribute in the form "?[package:][type:]name". 230 | @attr name com.immqy:textOff 231 | */ 232 | public static final int Switch_textOff = 3; 233 | /** 234 |

This symbol is the offset where the {@link com.immqy.R.attr#textOn} 235 | attribute's value can be found in the {@link #Switch} array. 236 | 237 | 238 |

Must be a reference to another resource, in the form "@[+][package:]type:name" 239 | or to a theme attribute in the form "?[package:][type:]name". 240 | @attr name com.immqy:textOn 241 | */ 242 | public static final int Switch_textOn = 2; 243 | /** 244 |

This symbol is the offset where the {@link com.immqy.R.attr#thumb} 245 | attribute's value can be found in the {@link #Switch} array. 246 | 247 | 248 |

Must be a reference to another resource, in the form "@[+][package:]type:name" 249 | or to a theme attribute in the form "?[package:][type:]name". 250 | @attr name com.immqy:thumb 251 | */ 252 | public static final int Switch_thumb = 0; 253 | /** 254 |

This symbol is the offset where the {@link com.immqy.R.attr#thumbTextPadding} 255 | attribute's value can be found in the {@link #Switch} array. 256 | 257 | 258 |

Must be a dimension value, which is a floating point number appended with a unit such as "14.5sp". 259 | Available units are: px (pixels), dp (density-independent pixels), sp (scaled pixels based on preferred font size), 260 | in (inches), mm (millimeters). 261 |

This may also be a reference to a resource (in the form 262 | "@[package:]type:name") or 263 | theme attribute (in the form 264 | "?[package:][type:]name") 265 | containing a value of this type. 266 | @attr name com.immqy:thumbTextPadding 267 | */ 268 | public static final int Switch_thumbTextPadding = 4; 269 | /** 270 |

This symbol is the offset where the {@link com.immqy.R.attr#track} 271 | attribute's value can be found in the {@link #Switch} array. 272 | 273 | 274 |

Must be a reference to another resource, in the form "@[+][package:]type:name" 275 | or to a theme attribute in the form "?[package:][type:]name". 276 | @attr name com.immqy:track 277 | */ 278 | public static final int Switch_track = 1; 279 | /** Attributes that can be used with a TextAppearance. 280 |

Includes the following attributes:

281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 |
AttributeDescription
{@link #TextAppearance_android_textColor android:textColor}
{@link #TextAppearance_android_textColorHighlight android:textColorHighlight}
{@link #TextAppearance_android_textColorHint android:textColorHint}
{@link #TextAppearance_android_textColorLink android:textColorLink}
{@link #TextAppearance_android_textSize android:textSize}
{@link #TextAppearance_android_textStyle android:textStyle}
{@link #TextAppearance_android_typeface android:typeface}
{@link #TextAppearance_textAllCaps com.immqy:textAllCaps}
294 | @see #TextAppearance_android_textColor 295 | @see #TextAppearance_android_textColorHighlight 296 | @see #TextAppearance_android_textColorHint 297 | @see #TextAppearance_android_textColorLink 298 | @see #TextAppearance_android_textSize 299 | @see #TextAppearance_android_textStyle 300 | @see #TextAppearance_android_typeface 301 | @see #TextAppearance_textAllCaps 302 | */ 303 | public static final int[] TextAppearance = { 304 | 0x01010095, 0x01010096, 0x01010097, 0x01010098, 305 | 0x01010099, 0x0101009a, 0x0101009b, 0x7f010009 306 | }; 307 | /** 308 |

This symbol is the offset where the {@link android.R.attr#textColor} 309 | attribute's value can be found in the {@link #TextAppearance} array. 310 | @attr name android:textColor 311 | */ 312 | public static final int TextAppearance_android_textColor = 3; 313 | /** 314 |

This symbol is the offset where the {@link android.R.attr#textColorHighlight} 315 | attribute's value can be found in the {@link #TextAppearance} array. 316 | @attr name android:textColorHighlight 317 | */ 318 | public static final int TextAppearance_android_textColorHighlight = 4; 319 | /** 320 |

This symbol is the offset where the {@link android.R.attr#textColorHint} 321 | attribute's value can be found in the {@link #TextAppearance} array. 322 | @attr name android:textColorHint 323 | */ 324 | public static final int TextAppearance_android_textColorHint = 5; 325 | /** 326 |

This symbol is the offset where the {@link android.R.attr#textColorLink} 327 | attribute's value can be found in the {@link #TextAppearance} array. 328 | @attr name android:textColorLink 329 | */ 330 | public static final int TextAppearance_android_textColorLink = 6; 331 | /** 332 |

This symbol is the offset where the {@link android.R.attr#textSize} 333 | attribute's value can be found in the {@link #TextAppearance} array. 334 | @attr name android:textSize 335 | */ 336 | public static final int TextAppearance_android_textSize = 0; 337 | /** 338 |

This symbol is the offset where the {@link android.R.attr#textStyle} 339 | attribute's value can be found in the {@link #TextAppearance} array. 340 | @attr name android:textStyle 341 | */ 342 | public static final int TextAppearance_android_textStyle = 2; 343 | /** 344 |

This symbol is the offset where the {@link android.R.attr#typeface} 345 | attribute's value can be found in the {@link #TextAppearance} array. 346 | @attr name android:typeface 347 | */ 348 | public static final int TextAppearance_android_typeface = 1; 349 | /** 350 |

This symbol is the offset where the {@link com.immqy.R.attr#textAllCaps} 351 | attribute's value can be found in the {@link #TextAppearance} array. 352 | 353 | 354 |

Must be a boolean value, either "true" or "false". 355 |

This may also be a reference to a resource (in the form 356 | "@[package:]type:name") or 357 | theme attribute (in the form 358 | "?[package:][type:]name") 359 | containing a value of this type. 360 | @attr name com.immqy:textAllCaps 361 | */ 362 | public static final int TextAppearance_textAllCaps = 7; 363 | /** Attributes that can be used with a Theme. 364 |

Includes the following attributes:

365 | 366 | 367 | 368 | 369 | 370 |
AttributeDescription
{@link #Theme_switchStyle com.immqy:switchStyle}
371 | @see #Theme_switchStyle 372 | */ 373 | public static final int[] Theme = { 374 | 0x7f010000 375 | }; 376 | /** 377 |

This symbol is the offset where the {@link com.immqy.R.attr#switchStyle} 378 | attribute's value can be found in the {@link #Theme} array. 379 | 380 | 381 |

Must be a reference to another resource, in the form "@[+][package:]type:name" 382 | or to a theme attribute in the form "?[package:][type:]name". 383 | @attr name com.immqy:switchStyle 384 | */ 385 | public static final int Theme_switchStyle = 0; 386 | }; 387 | } 388 | -------------------------------------------------------------------------------- /Bluetooth/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/libs/android-support-v4.jar -------------------------------------------------------------------------------- /Bluetooth/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /Bluetooth/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-19 15 | -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/bkg_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/bkg_switch.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/btn_slip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/btn_slip.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/lock.jpg -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/open_lock.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/open_lock.jpg -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/setting_switch.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/setting_switch.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/setting_switch_off_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/setting_switch_off_bg.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/setting_switch_on_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/setting_switch_on_bg.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_bg_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_bg_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_bg_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_bg_disabled_holo_light.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_bg_focused_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_bg_focused_holo_dark.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_bg_focused_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_bg_focused_holo_light.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_bg_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_bg_holo_dark.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_bg_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_bg_holo_light.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_thumb_activated_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_thumb_activated_holo_dark.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_thumb_activated_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_thumb_activated_holo_light.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_thumb_disabled_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_thumb_disabled_holo_dark.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_thumb_disabled_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_thumb_disabled_holo_light.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_thumb_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_thumb_holo_dark.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_thumb_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_thumb_holo_light.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_thumb_pressed_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_thumb_pressed_holo_dark.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable-hdpi/switch_thumb_pressed_holo_light.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable-hdpi/switch_thumb_pressed_holo_light.9.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable/app_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sheep0704/DuBluetooth/22da9132d4865eca844e3c976653089360c8ac69/Bluetooth/res/drawable/app_image.png -------------------------------------------------------------------------------- /Bluetooth/res/drawable/switch_inner_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Bluetooth/res/drawable/switch_inner_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /Bluetooth/res/drawable/switch_track_holo_dark.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Bluetooth/res/drawable/switch_track_holo_light.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /Bluetooth/res/layout/anothermainlayout.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 8 |