实例介绍
能够实现扫描周围蓝牙设备,并显示在列表中用于选择连接;能够通讯及收发数据,并把数据更新到UI上。将BluetoothChatService类中的UUID替换即能实现蓝牙聊天
【实例截图】
【核心代码】
手机蓝牙与设备通讯实例
└── 手机蓝牙与设备通讯实例
├── BluetoothChat
│ ├── Application
│ │ ├── Application.iml
│ │ ├── Application-release.apk
│ │ ├── build
│ │ │ ├── generated
│ │ │ │ └── source
│ │ │ │ ├── buildConfig
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ │ └── com
│ │ │ │ │ │ └── example
│ │ │ │ │ │ └── android
│ │ │ │ │ │ └── bluetoothchat
│ │ │ │ │ │ └── test
│ │ │ │ │ │ └── BuildConfig.java
│ │ │ │ │ ├── debug
│ │ │ │ │ │ └── com
│ │ │ │ │ │ └── example
│ │ │ │ │ │ └── android
│ │ │ │ │ │ └── bluetoothchat
│ │ │ │ │ │ └── BuildConfig.java
│ │ │ │ │ └── release
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── android
│ │ │ │ │ └── bluetoothchat
│ │ │ │ │ └── BuildConfig.java
│ │ │ │ └── r
│ │ │ │ ├── debug
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ ├── cardview
│ │ │ │ │ │ │ └── R.java
│ │ │ │ │ │ └── gridlayout
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── android
│ │ │ │ │ └── bluetoothchat
│ │ │ │ │ └── R.java
│ │ │ │ └── release
│ │ │ │ ├── android
│ │ │ │ │ └── support
│ │ │ │ │ ├── v4
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── v7
│ │ │ │ │ ├── cardview
│ │ │ │ │ │ └── R.java
│ │ │ │ │ └── gridlayout
│ │ │ │ │ └── R.java
│ │ │ │ └── com
│ │ │ │ └── example
│ │ │ │ └── android
│ │ │ │ └── bluetoothchat
│ │ │ │ └── R.java
│ │ │ ├── intermediates
│ │ │ │ ├── blame
│ │ │ │ │ └── res
│ │ │ │ │ ├── debug
│ │ │ │ │ │ ├── multi
│ │ │ │ │ │ │ ├── values.json
│ │ │ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ │ │ ├── values-v11.json
│ │ │ │ │ │ │ └── values-v21.json
│ │ │ │ │ │ └── single
│ │ │ │ │ │ ├── drawable-hdpi.json
│ │ │ │ │ │ ├── drawable-mdpi.json
│ │ │ │ │ │ ├── drawable-xhdpi.json
│ │ │ │ │ │ ├── drawable-xxhdpi.json
│ │ │ │ │ │ ├── layout.json
│ │ │ │ │ │ ├── layout-w720dp-v13.json
│ │ │ │ │ │ └── menu.json
│ │ │ │ │ └── release
│ │ │ │ │ ├── multi
│ │ │ │ │ │ ├── values.json
│ │ │ │ │ │ ├── values-sw600dp-v13.json
│ │ │ │ │ │ ├── values-v11.json
│ │ │ │ │ │ └── values-v21.json
│ │ │ │ │ └── single
│ │ │ │ │ ├── drawable-hdpi.json
│ │ │ │ │ ├── drawable-mdpi.json
│ │ │ │ │ ├── drawable-xhdpi.json
│ │ │ │ │ ├── drawable-xxhdpi.json
│ │ │ │ │ ├── layout.json
│ │ │ │ │ ├── layout-w720dp-v13.json
│ │ │ │ │ └── menu.json
│ │ │ │ ├── classes
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ │ └── com
│ │ │ │ │ │ └── example
│ │ │ │ │ │ └── android
│ │ │ │ │ │ └── bluetoothchat
│ │ │ │ │ │ └── test
│ │ │ │ │ │ └── BuildConfig.class
│ │ │ │ │ ├── debug
│ │ │ │ │ │ ├── android
│ │ │ │ │ │ │ └── support
│ │ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ └── v7
│ │ │ │ │ │ │ ├── cardview
│ │ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ │ └── gridlayout
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── com
│ │ │ │ │ │ └── example
│ │ │ │ │ │ └── android
│ │ │ │ │ │ ├── bluetoothchat
│ │ │ │ │ │ │ ├── BluetoothChatFragment$1.class
│ │ │ │ │ │ │ ├── BluetoothChatFragment$2.class
│ │ │ │ │ │ │ ├── BluetoothChatFragment$3.class
│ │ │ │ │ │ │ ├── BluetoothChatFragment.class
│ │ │ │ │ │ │ ├── BluetoothChatService$AcceptThread.class
│ │ │ │ │ │ │ ├── BluetoothChatService$ConnectedThread.class
│ │ │ │ │ │ │ ├── BluetoothChatService$ConnectThread.class
│ │ │ │ │ │ │ ├── BluetoothChatService.class
│ │ │ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ │ │ ├── Constants.class
│ │ │ │ │ │ │ ├── DeviceListActivity$1.class
│ │ │ │ │ │ │ ├── DeviceListActivity$2.class
│ │ │ │ │ │ │ ├── DeviceListActivity$3.class
│ │ │ │ │ │ │ ├── DeviceListActivity.class
│ │ │ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ │ ├── R$menu.class
│ │ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── common
│ │ │ │ │ │ ├── activities
│ │ │ │ │ │ │ └── SampleActivityBase.class
│ │ │ │ │ │ └── logger
│ │ │ │ │ │ ├── Log.class
│ │ │ │ │ │ ├── LogFragment$1.class
│ │ │ │ │ │ ├── LogFragment.class
│ │ │ │ │ │ ├── LogNode.class
│ │ │ │ │ │ ├── LogView$1.class
│ │ │ │ │ │ ├── LogView.class
│ │ │ │ │ │ ├── LogWrapper.class
│ │ │ │ │ │ └── MessageOnlyLogFilter.class
│ │ │ │ │ └── release
│ │ │ │ │ ├── android
│ │ │ │ │ │ └── support
│ │ │ │ │ │ ├── v4
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── v7
│ │ │ │ │ │ ├── cardview
│ │ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ │ └── R.class
│ │ │ │ │ │ └── gridlayout
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── com
│ │ │ │ │ └── example
│ │ │ │ │ └── android
│ │ │ │ │ ├── bluetoothchat
│ │ │ │ │ │ ├── BluetoothChatFragment$1.class
│ │ │ │ │ │ ├── BluetoothChatFragment$2.class
│ │ │ │ │ │ ├── BluetoothChatFragment$3.class
│ │ │ │ │ │ ├── BluetoothChatFragment.class
│ │ │ │ │ │ ├── BluetoothChatService$AcceptThread.class
│ │ │ │ │ │ ├── BluetoothChatService$ConnectedThread.class
│ │ │ │ │ │ ├── BluetoothChatService$ConnectThread.class
│ │ │ │ │ │ ├── BluetoothChatService.class
│ │ │ │ │ │ ├── BuildConfig.class
│ │ │ │ │ │ ├── Constants.class
│ │ │ │ │ │ ├── DeviceListActivity$1.class
│ │ │ │ │ │ ├── DeviceListActivity$2.class
│ │ │ │ │ │ ├── DeviceListActivity$3.class
│ │ │ │ │ │ ├── DeviceListActivity.class
│ │ │ │ │ │ ├── MainActivity.class
│ │ │ │ │ │ ├── R$attr.class
│ │ │ │ │ │ ├── R$color.class
│ │ │ │ │ │ ├── R$dimen.class
│ │ │ │ │ │ ├── R$drawable.class
│ │ │ │ │ │ ├── R$id.class
│ │ │ │ │ │ ├── R$layout.class
│ │ │ │ │ │ ├── R$menu.class
│ │ │ │ │ │ ├── R$string.class
│ │ │ │ │ │ ├── R$styleable.class
│ │ │ │ │ │ ├── R$style.class
│ │ │ │ │ │ └── R.class
│ │ │ │ │ └── common
│ │ │ │ │ ├── activities
│ │ │ │ │ │ └── SampleActivityBase.class
│ │ │ │ │ └── logger
│ │ │ │ │ ├── Log.class
│ │ │ │ │ ├── LogFragment$1.class
│ │ │ │ │ ├── LogFragment.class
│ │ │ │ │ ├── LogNode.class
│ │ │ │ │ ├── LogView$1.class
│ │ │ │ │ ├── LogView.class
│ │ │ │ │ ├── LogWrapper.class
│ │ │ │ │ └── MessageOnlyLogFilter.class
│ │ │ │ ├── incremental
│ │ │ │ │ ├── compileDebugAidl
│ │ │ │ │ │ └── dependency.store
│ │ │ │ │ ├── compileDebugAndroidTestAidl
│ │ │ │ │ │ └── dependency.store
│ │ │ │ │ ├── compileReleaseAidl
│ │ │ │ │ │ └── dependency.store
│ │ │ │ │ ├── mergeDebugAndroidTestResources
│ │ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ ├── mergeDebugResources
│ │ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ │ ├── values-v11
│ │ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ │ └── values-v21
│ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ ├── mergeReleaseAssets
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ ├── mergeReleaseJniLibFolders
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ ├── mergeReleaseResources
│ │ │ │ │ │ ├── compile-file-map.properties
│ │ │ │ │ │ ├── merged.dir
│ │ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ │ ├── values-v11
│ │ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ │ └── values-v21
│ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ ├── mergeReleaseShaders
│ │ │ │ │ │ └── merger.xml
│ │ │ │ │ └── packageRelease
│ │ │ │ │ ├── dex-renamer-state.txt
│ │ │ │ │ ├── file-input-save-data.txt
│ │ │ │ │ └── zip-cache
│ │ │ │ │ └── irrhWx23R20AVKNmP9dgjLVLY7c=
│ │ │ │ ├── incremental-safeguard
│ │ │ │ │ ├── androidTest
│ │ │ │ │ │ └── debug
│ │ │ │ │ │ └── tag.txt
│ │ │ │ │ ├── debug
│ │ │ │ │ │ └── tag.txt
│ │ │ │ │ └── release
│ │ │ │ │ └── tag.txt
│ │ │ │ ├── manifest
│ │ │ │ │ └── androidTest
│ │ │ │ │ └── debug
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── manifests
│ │ │ │ │ └── full
│ │ │ │ │ ├── debug
│ │ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ │ └── release
│ │ │ │ │ └── AndroidManifest.xml
│ │ │ │ ├── pre-dexed
│ │ │ │ │ └── release
│ │ │ │ │ ├── classes_13460fbe11a321d5a133c3ec750a8dd188a3116d.jar
│ │ │ │ │ ├── classes_221ca508f6556f7dbda7265064b91d46e25fd15e.jar
│ │ │ │ │ ├── classes_e5336e17cf5c2858c09109210efada4bb0e5a818.jar
│ │ │ │ │ ├── internal_impl-23.0.0_27ee8acc56685de9b26b5b20847d27967f1aba61.jar
│ │ │ │ │ ├── release_48c253780c018018700a28ac47c30d751914bfd9.jar
│ │ │ │ │ └── support-annotations-23.0.0_aa801769fe30c3dffedfae18756d60864b984d39.jar
│ │ │ │ ├── res
│ │ │ │ │ ├── merged
│ │ │ │ │ │ ├── debug
│ │ │ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ │ │ └── tile.9.png
│ │ │ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ │ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ │ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ │ ├── activity_device_list.xml
│ │ │ │ │ │ │ │ ├── activity_main.xml
│ │ │ │ │ │ │ │ ├── device_name.xml
│ │ │ │ │ │ │ │ ├── fragment_bluetooth_chat.xml
│ │ │ │ │ │ │ │ └── message.xml
│ │ │ │ │ │ │ ├── layout-w720dp-v13
│ │ │ │ │ │ │ │ └── activity_main.xml
│ │ │ │ │ │ │ ├── menu
│ │ │ │ │ │ │ │ ├── bluetooth_chat.xml
│ │ │ │ │ │ │ │ └── main.xml
│ │ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ │ ├── values-v11
│ │ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ │ └── values-v21
│ │ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ │ └── release
│ │ │ │ │ │ ├── drawable-hdpi
│ │ │ │ │ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ │ │ │ │ ├── ic_launcher.png
│ │ │ │ │ │ │ └── tile.9.png
│ │ │ │ │ │ ├── drawable-mdpi
│ │ │ │ │ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── drawable-xhdpi
│ │ │ │ │ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── drawable-xxhdpi
│ │ │ │ │ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ │ │ │ │ └── ic_launcher.png
│ │ │ │ │ │ ├── layout
│ │ │ │ │ │ │ ├── activity_device_list.xml
│ │ │ │ │ │ │ ├── activity_main.xml
│ │ │ │ │ │ │ ├── device_name.xml
│ │ │ │ │ │ │ ├── fragment_bluetooth_chat.xml
│ │ │ │ │ │ │ └── message.xml
│ │ │ │ │ │ ├── layout-w720dp-v13
│ │ │ │ │ │ │ └── activity_main.xml
│ │ │ │ │ │ ├── menu
│ │ │ │ │ │ │ ├── bluetooth_chat.xml
│ │ │ │ │ │ │ └── main.xml
│ │ │ │ │ │ ├── values
│ │ │ │ │ │ │ └── values.xml
│ │ │ │ │ │ ├── values-sw600dp-v13
│ │ │ │ │ │ │ └── values-sw600dp-v13.xml
│ │ │ │ │ │ ├── values-v11
│ │ │ │ │ │ │ └── values-v11.xml
│ │ │ │ │ │ └── values-v21
│ │ │ │ │ │ └── values-v21.xml
│ │ │ │ │ ├── resources-debug-androidTest.ap_
│ │ │ │ │ ├── resources-debug.ap_
│ │ │ │ │ └── resources-release.ap_
│ │ │ │ ├── symbols
│ │ │ │ │ ├── debug
│ │ │ │ │ │ └── R.txt
│ │ │ │ │ └── release
│ │ │ │ │ └── R.txt
│ │ │ │ └── transforms
│ │ │ │ └── dex
│ │ │ │ └── release
│ │ │ │ └── folders
│ │ │ │ └── 1000
│ │ │ │ └── 1f
│ │ │ │ └── main
│ │ │ │ └── classes.dex
│ │ │ ├── outputs
│ │ │ │ └── logs
│ │ │ │ ├── manifest-merger-debug-report.txt
│ │ │ │ └── manifest-merger-release-report.txt
│ │ │ └── reports
│ │ │ ├── lint-results-release-fatal.html
│ │ │ └── lint-results-release-fatal.xml
│ │ ├── build.gradle
│ │ └── src
│ │ └── main
│ │ ├── AndroidManifest.xml
│ │ ├── java
│ │ │ └── com
│ │ │ └── example
│ │ │ └── android
│ │ │ ├── bluetoothchat
│ │ │ │ ├── BluetoothChatFragment.java
│ │ │ │ ├── BluetoothChatService.java
│ │ │ │ ├── Constants.java
│ │ │ │ ├── DeviceListActivity.java
│ │ │ │ └── MainActivity.java
│ │ │ └── common
│ │ │ ├── activities
│ │ │ │ └── SampleActivityBase.java
│ │ │ └── logger
│ │ │ ├── LogFragment.java
│ │ │ ├── Log.java
│ │ │ ├── LogNode.java
│ │ │ ├── LogView.java
│ │ │ ├── LogWrapper.java
│ │ │ └── MessageOnlyLogFilter.java
│ │ └── res
│ │ ├── drawable-hdpi
│ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ ├── ic_launcher.png
│ │ │ └── tile.9.png
│ │ ├── drawable-mdpi
│ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xhdpi
│ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ └── ic_launcher.png
│ │ ├── drawable-xxhdpi
│ │ │ ├── ic_action_device_access_bluetooth_searching.png
│ │ │ └── ic_launcher.png
│ │ ├── layout
│ │ │ ├── activity_device_list.xml
│ │ │ ├── activity_main.xml
│ │ │ ├── device_name.xml
│ │ │ ├── fragment_bluetooth_chat.xml
│ │ │ └── message.xml
│ │ ├── layout-w720dp
│ │ │ └── activity_main.xml
│ │ ├── menu
│ │ │ ├── bluetooth_chat.xml
│ │ │ └── main.xml
│ │ ├── values
│ │ │ ├── base-strings.xml
│ │ │ ├── fragmentview_strings.xml
│ │ │ ├── strings.xml
│ │ │ ├── template-dimens.xml
│ │ │ └── template-styles.xml
│ │ ├── values-sw600dp
│ │ │ ├── template-dimens.xml
│ │ │ └── template-styles.xml
│ │ ├── values-v11
│ │ │ └── template-styles.xml
│ │ └── values-v21
│ │ ├── base-colors.xml
│ │ └── base-template-styles.xml
│ ├── BluetoothChat.iml
│ ├── build
│ │ ├── android-profile
│ │ │ ├── profile-2017-09-03-16-44-15-283.rawproto
│ │ │ ├── profile-2017-09-03-16-44-24-666.rawproto
│ │ │ ├── profile-2017-09-03-16-44-27-512.rawproto
│ │ │ ├── profile-2017-09-03-16-45-48-013.rawproto
│ │ │ ├── profile-2017-09-03-16-47-28-713.rawproto
│ │ │ ├── profile-2017-09-03-16-57-18-853.rawproto
│ │ │ ├── profile-2017-09-04-18-37-38-412.rawproto
│ │ │ ├── profile-2017-09-04-18-37-45-934.rawproto
│ │ │ ├── profile-2017-09-05-08-44-07-113.rawproto
│ │ │ ├── profile-2017-09-05-08-44-13-531.rawproto
│ │ │ ├── profile-2017-09-06-08-26-58-678.rawproto
│ │ │ ├── profile-2017-09-06-08-27-08-789.rawproto
│ │ │ ├── profile-2017-09-07-08-50-32-915.rawproto
│ │ │ ├── profile-2017-09-07-08-50-41-483.rawproto
│ │ │ ├── profile-2017-09-08-19-39-14-848.rawproto
│ │ │ ├── profile-2017-09-08-19-39-16-671.rawproto
│ │ │ ├── profile-2017-09-08-19-39-38-920.rawproto
│ │ │ ├── profile-2017-09-08-19-39-40-240.rawproto
│ │ │ ├── profile-2017-09-08-19-40-01-572.rawproto
│ │ │ ├── profile-2017-09-08-20-33-38-870.rawproto
│ │ │ ├── profile-2017-09-08-20-33-46-880.rawproto
│ │ │ ├── profile-2017-09-08-21-35-13-324.rawproto
│ │ │ ├── profile-2017-09-08-21-35-29-925.rawproto
│ │ │ ├── profile-2017-09-08-21-41-20-406.rawproto
│ │ │ ├── profile-2017-09-08-21-43-00-285.rawproto
│ │ │ ├── profile-2017-09-09-08-52-10-702.rawproto
│ │ │ ├── profile-2017-09-09-08-52-14-028.rawproto
│ │ │ ├── profile-2017-09-09-09-15-01-861.rawproto
│ │ │ ├── profile-2017-09-10-11-29-14-236.rawproto
│ │ │ ├── profile-2017-09-10-11-29-17-951.rawproto
│ │ │ ├── profile-2017-09-10-11-29-47-954.rawproto
│ │ │ ├── profile-2017-09-10-16-21-23-981.rawproto
│ │ │ ├── profile-2017-09-10-16-21-26-684.rawproto
│ │ │ ├── profile-2017-09-21-08-32-15-714.rawproto
│ │ │ ├── profile-2017-09-21-08-32-17-672.rawproto
│ │ │ ├── profile-2017-09-21-10-15-12-535.rawproto
│ │ │ ├── profile-2017-09-21-10-15-13-965.rawproto
│ │ │ ├── profile-2017-09-21-11-19-34-509.rawproto
│ │ │ ├── profile-2017-09-21-11-20-32-785.rawproto
│ │ │ └── profile-2017-09-21-11-24-14-385.rawproto
│ │ ├── generated
│ │ │ └── mockable-android-23.jar
│ │ └── intermediates
│ │ └── dex-cache
│ │ └── cache.xml
│ ├── build.gradle
│ ├── CONTRIB.md
│ ├── CONTRIBUTING.md
│ ├── gradle
│ │ └── wrapper
│ │ ├── gradle-wrapper.jar
│ │ └── gradle-wrapper.properties
│ ├── gradlew
│ ├── gradlew.bat
│ ├── LICENSE
│ ├── local.properties
│ ├── README.md
│ ├── screenshots
│ │ ├── 1-launch.png
│ │ ├── 2-devices.png
│ │ ├── 3-chat.png
│ │ └── icon-web.png
│ └── settings.gradle
└── Bluetooth-release.apk
197 directories, 317 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论