└── BluetoothChatMulti ├── .classpath ├── .project ├── AndroidManifest.xml ├── bin ├── BluetoothChatMulti.apk ├── classes.dex ├── com │ └── example │ │ └── android │ │ ├── BluetoothChat │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ └── R.class │ │ └── BluetoothChatMulti │ │ ├── BluetoothChat$1.class │ │ ├── BluetoothChat$2.class │ │ ├── BluetoothChat$3.class │ │ ├── BluetoothChat.class │ │ ├── BluetoothChatService$AcceptThread.class │ │ ├── BluetoothChatService$ConnectThread.class │ │ ├── BluetoothChatService$ConnectedThread.class │ │ ├── BluetoothChatService.class │ │ ├── DeviceListActivity$1.class │ │ ├── DeviceListActivity$2.class │ │ ├── DeviceListActivity$3.class │ │ ├── DeviceListActivity.class │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$menu.class │ │ ├── R$string.class │ │ └── R.class └── resources.ap_ ├── default.properties ├── gen └── com │ └── example │ └── android │ ├── BluetoothChat │ └── R.java │ └── BluetoothChatMulti │ └── R.java ├── res ├── drawable-hdpi │ └── app_icon.png ├── drawable │ └── app_icon.png ├── layout │ ├── custom_title.xml │ ├── device_list.xml │ ├── device_name.xml │ ├── main.xml │ └── message.xml ├── menu │ └── option_menu.xml └── values │ └── strings.xml └── src └── com └── example └── android └── BluetoothChatMulti ├── BluetoothChat.java ├── BluetoothChatService.java └── DeviceListActivity.java /BluetoothChatMulti/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /BluetoothChatMulti/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | BluetoothChatMulti 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 | -------------------------------------------------------------------------------- /BluetoothChatMulti/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 20 | 21 | 22 | 23 | 24 | 26 | 29 | 30 | 31 | 32 | 33 | 34 | 38 | 39 | 40 | -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/BluetoothChatMulti.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/BluetoothChatMulti.apk -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/classes.dex -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$attr.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$drawable.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$id.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$layout.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$menu.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChat/R$string.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChat/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChat/R.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChat$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChat$1.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChat$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChat$2.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChat$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChat$3.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChat.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChat.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChatService$AcceptThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChatService$AcceptThread.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChatService$ConnectThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChatService$ConnectThread.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChatService$ConnectedThread.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChatService$ConnectedThread.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChatService.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/BluetoothChatService.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/DeviceListActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/DeviceListActivity$1.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/DeviceListActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/DeviceListActivity$2.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/DeviceListActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/DeviceListActivity$3.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/DeviceListActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/DeviceListActivity.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$attr.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$drawable.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$id.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$layout.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$menu.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$menu.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R$string.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/com/example/android/BluetoothChatMulti/R.class -------------------------------------------------------------------------------- /BluetoothChatMulti/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/bin/resources.ap_ -------------------------------------------------------------------------------- /BluetoothChatMulti/default.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 use, 7 | # "build.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-7 12 | -------------------------------------------------------------------------------- /BluetoothChatMulti/gen/com/example/android/BluetoothChat/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.example.android.BluetoothChat; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class drawable { 14 | public static final int app_icon=0x7f020000; 15 | } 16 | public static final class id { 17 | public static final int button_scan=0x7f060006; 18 | public static final int button_send=0x7f060009; 19 | public static final int discoverable=0x7f06000b; 20 | public static final int edit_text_out=0x7f060008; 21 | public static final int in=0x7f060007; 22 | public static final int new_devices=0x7f060005; 23 | public static final int paired_devices=0x7f060003; 24 | public static final int scan=0x7f06000a; 25 | public static final int title_left_text=0x7f060000; 26 | public static final int title_new_devices=0x7f060004; 27 | public static final int title_paired_devices=0x7f060002; 28 | public static final int title_right_text=0x7f060001; 29 | } 30 | public static final class layout { 31 | public static final int custom_title=0x7f030000; 32 | public static final int device_list=0x7f030001; 33 | public static final int device_name=0x7f030002; 34 | public static final int main=0x7f030003; 35 | public static final int message=0x7f030004; 36 | } 37 | public static final class menu { 38 | public static final int option_menu=0x7f050000; 39 | } 40 | public static final class string { 41 | public static final int app_name=0x7f040000; 42 | public static final int bt_not_enabled_leaving=0x7f040003; 43 | public static final int button_scan=0x7f04000d; 44 | /** Options Menu 45 | */ 46 | public static final int connect=0x7f04000e; 47 | public static final int discoverable=0x7f04000f; 48 | public static final int none_found=0x7f04000a; 49 | public static final int none_paired=0x7f040009; 50 | public static final int not_connected=0x7f040002; 51 | /** DeviceListActivity 52 | */ 53 | public static final int scanning=0x7f040007; 54 | public static final int select_device=0x7f040008; 55 | /** BluetoothChat 56 | */ 57 | public static final int send=0x7f040001; 58 | public static final int title_connected_to=0x7f040005; 59 | public static final int title_connecting=0x7f040004; 60 | public static final int title_not_connected=0x7f040006; 61 | public static final int title_other_devices=0x7f04000c; 62 | public static final int title_paired_devices=0x7f04000b; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /BluetoothChatMulti/gen/com/example/android/BluetoothChatMulti/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.example.android.BluetoothChatMulti; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class drawable { 14 | public static final int app_icon=0x7f020000; 15 | } 16 | public static final class id { 17 | public static final int button_scan=0x7f060006; 18 | public static final int button_send=0x7f060009; 19 | public static final int discoverable=0x7f06000b; 20 | public static final int edit_text_out=0x7f060008; 21 | public static final int in=0x7f060007; 22 | public static final int new_devices=0x7f060005; 23 | public static final int paired_devices=0x7f060003; 24 | public static final int scan=0x7f06000a; 25 | public static final int title_left_text=0x7f060000; 26 | public static final int title_new_devices=0x7f060004; 27 | public static final int title_paired_devices=0x7f060002; 28 | public static final int title_right_text=0x7f060001; 29 | } 30 | public static final class layout { 31 | public static final int custom_title=0x7f030000; 32 | public static final int device_list=0x7f030001; 33 | public static final int device_name=0x7f030002; 34 | public static final int main=0x7f030003; 35 | public static final int message=0x7f030004; 36 | } 37 | public static final class menu { 38 | public static final int option_menu=0x7f050000; 39 | } 40 | public static final class string { 41 | public static final int app_name=0x7f040000; 42 | public static final int bt_not_enabled_leaving=0x7f040003; 43 | public static final int button_scan=0x7f04000d; 44 | /** Options Menu 45 | */ 46 | public static final int connect=0x7f04000e; 47 | public static final int discoverable=0x7f04000f; 48 | public static final int none_found=0x7f04000a; 49 | public static final int none_paired=0x7f040009; 50 | public static final int not_connected=0x7f040002; 51 | /** DeviceListActivity 52 | */ 53 | public static final int scanning=0x7f040007; 54 | public static final int select_device=0x7f040008; 55 | /** BluetoothChat 56 | */ 57 | public static final int send=0x7f040001; 58 | public static final int title_connected_to=0x7f040005; 59 | public static final int title_connecting=0x7f040004; 60 | public static final int title_not_connected=0x7f040006; 61 | public static final int title_other_devices=0x7f04000c; 62 | public static final int title_paired_devices=0x7f04000b; 63 | } 64 | } 65 | -------------------------------------------------------------------------------- /BluetoothChatMulti/res/drawable-hdpi/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/res/drawable-hdpi/app_icon.png -------------------------------------------------------------------------------- /BluetoothChatMulti/res/drawable/app_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/polyclef/BluetoothChatMulti/f50d9895b6a685f41019dd92067691dbefeffa9a/BluetoothChatMulti/res/drawable/app_icon.png -------------------------------------------------------------------------------- /BluetoothChatMulti/res/layout/custom_title.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 21 | 30 | 39 | -------------------------------------------------------------------------------- /BluetoothChatMulti/res/layout/device_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 21 | 30 | 36 | 45 | 51 |