Android 2.3 r1 API中文文档——BluetoothServerSocket(Android Club SYSU)
[转载]蓝牙4-Android BLE开发官方文档翻译
添加关注 (/sign_in)
[转载]蓝牙4.0——Android BLE开发官方文档翻译
字数3340 阅读1719 评论2 喜欢19
... } 如果你只想扫描指定类型的外围设备,可以改为调用startLeScan(UUID[], BluetoothAdapter.LeScanCallback)),需要提供 你的app支持的GATT services的UUID对象数组。 作为BLE扫描结果的接口,下面是BluetoothAdapter.LeScanCallback的实现。
发现BLE设备 为了发现BLE设备,使用startLeScan())方法。这个方法需要一个参数BluetoothAdapter.LeScanCallback。你必须实现它 的回调函数,那就是返回的扫描结果。因为扫描非常消耗电量,你应当遵守以下准则: 只要找到所需的设备,停止扫描。 不要在循环里扫描,并且对扫描设置时间限制。以前可用的设备可能已经移出范围,继续扫描消耗电池电量。 下面代码显示了如何开始和停止一个扫描: // 扫描和显示可以提供的蓝牙设备.
// 使用此检查确定BLE是否支持在设备上,然后你可以有选择性禁用BLE相关的功能 if (!getPackageManager().hasSystemFeature(PackageManager.FEATURE_BLUETOOTH_LE)) { Toast.makeText(this, R.string.ble_not_supported, Toast.LENGTH_SHORT).show(); finish(); }
安卓蓝牙中文翻译帮助文档
尔类型,它表明发现过程启动是否成功。这个发现过程通常包含了 12S 的扫描查询过程,接 下来就是包含了每个被发现设备的的页扫描来提取蓝牙设备的名字。
// Create a BroadcastReceiver for ACTION_FOUND private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
如果你将要初始化一个连接到远程设备,你就没有必要打开可见性。使能可见性仅仅只是让 你的应用程序作为服务端 Socket,它用来接受输入连接请求。因为远程设备在初始化连接之 前必须先发现这个设备。
连接设备 为了在你的应用程序里面让 2 个设备建立连接,你必须实行服务端和客户端连接机制。因为 一个设备必须打开一个 server socket 服务端套接字而另一个设备必须初始化这个连接(使 用 server 设备的物理地址来建立连接)。当 server 和 client 他们之间在同一个 RFCOMM 通 信通道之间有一个连接好了的 BluetoothSocket 的时候,server 和 client 服务端和客户端就被 认为是已经建立好了连接。在这个点上,每个设备就可以获得输入输出流,数据传输也可以 开始。关于这点我们在管理连接那节介绍,我们这节只讲如何在 2 个设备之间初始化连接。
android蓝牙介绍二蓝牙代码架构及其uart 到rfcomm流程
Android bluetooth介绍(二)android 蓝牙代码架构及其uart 到rfcomm 流程一、Android Bluetooth Architecture蓝牙代码架构部分(google 官方蓝牙框架)Android的蓝牙系统,自下而上包括以下一些内容如上图所示:1、串口驱动Linux的内核的蓝牙驱动程、Linux的内核的蓝牙协议的层2、BlueZ的适配器BlueZ的(蓝牙在用户空间的函式库)bluez代码结构Bluetooth协议栈BlueZ分为两部分:内核代码和用户态程序及工具集。
(1)、内核代码:由BlueZ核心协议和驱动程序组成Bluetooth协议实现在内核源代码 kernel/net/bluetooth中。
包括hci,l2cap,hid,rfcomm,sco,SDP,BNEP等协议的实现。
(2)、驱动程序:kernel/driver/bluetooth中,包含Linuxkernel对各种接口的Bluetooth device的驱动,如:USB接口,串口等。
(3)、用户态程序及工具集:包括应用程序接口和BlueZ工具集。
BlueZ提供函数库以及应用程序接口,便于程序员开发bluetooth应用程序。
BlueZ utils是主要工具集,实现对bluetooth设备的初始化和控制。
3、蓝牙相关的应用程序接口Android.buletooth包中的各个Class(蓝牙在框架层的内容-----java)同样下图也是一张比较经典的蓝牙代码架构图(google官方提供)二、蓝牙通过Hciattach启动串口流程:1、hciattach总体流程2、展讯hciattach代码实现流程:三、具体代码分析1、initrc中定义idh.code\device\sprd\sp8830ec_nwcn\init.sc8830.rc1.service hciattach /system/bin/hciattach -n /dev/sttybt0 sprd_shark2.socket bluetooth stream 660 bluetooth bluetoother bluetooth4.group wifi bluetooth net_bt_admin net_bt inet net_raw net_admin system5.disabled6.oneshotadb 下/dev/ttybt0(不同平台有所不同)PS 进程中:hicattch2、/system/bin/hciattach 执行的Main函数idh.code\external\bluetooth\bluez\tools\hciattach.cservice hciattach /system/bin/hciattach -n /dev/sttybt0sprd_shark 传进两个参数,/dev/sttybt0 和 sprd_shark1.i nt main(int argc, char *argv[])2.{3.………………4.for (n = 0; optind < argc; n++, optind++) {5.char *opt;6.7.opt = argv[optind];8.9.switch(n) {10. case 0://(1)、解析驱动的位置;11. dev[0] = 0;12. if (!strchr(opt, '/'))13. strcpy(dev, "/dev/");14. strcat(dev, opt);15. break;16.17. case 1://(2)、解析串口的配置相关参数;18. if (strchr(argv[optind], ',')) {19. int m_id, p_id;20. sscanf(argv[optind], "%x,%x",&m_id, &p_id);21. u = get_by_id(m_id, p_id);22. } else {23. u = get_by_type(opt);24. }25.26. if (!u) {27. fprintf(stderr, "Unknown device type or id\n");28. exit(1);29. }30.31. break;32.33. case 2://(3)、通过对前面参数的解析,把uart[i]中的数值初始化;34. u->speed = atoi(argv[optind]);35. break;36.37. case 3:38. if (!strcmp("flow", argv[optind]))39. u->flags |= FLOW_CTL;40. else41. u->flags &= ~FLOW_CTL;42. break;43.44. case 4:45. if (!strcmp("sleep", argv[optind]))46. u->pm = ENABLE_PM;47. else48. u->pm = DISABLE_PM;49. break;50.51. case 5:52. u->bdaddr = argv[optind];53. break;54. }55. }56.57.………………58. if (init_speed)//初始化串口速率;59. u->init_speed = init_speed;60.………………61. n = init_uart(dev, u, send_break, raw);//(4)、初始化串口;62.………………63.64. return 0;65.}(1)、解析驱动的位置;1.if (!strchr(opt, '/'))2.strcpy(dev, "/dev/");3.service hciattach /system/bin/hciattach -n /dev/sttybt0 sprd_shark4.dev = /dev/ttyb0(2)、解析串口的配置相关参数;获取参数对应的结构体;1.u = get_by_id(m_id, p_id);2.static struct uart_t * get_by_id(int m_id, int p_id)3.{4.int i;5.for (i = 0; uart[i].type; i++) {6.if (uart[i].m_id == m_id && uart[i].p_id== p_id)7.return &uart[i];8.}9.return NULL;10.}这个函数比较简单,通过循环对比,如传进了的参数sprd_shark和uart结构体中的对比,找到对应的数组。
Android中文API(70)——BluetoothDevice[蓝牙]
Android中⽂API(70)——BluetoothDevice[蓝⽛]前⾔声明 欢迎转载,但请保留⽂章原始出处:)正⽂ ⼀、结构public static class BluetoothDevice extends Object implements Parcelableng.Objectandroid.bluetooth.BluetoothDevice ⼆、概述 代表⼀个远程蓝⽛设备。
让你创建⼀个带有各⾃设备的BluetoothDevice或者查询其皆如名称、地址、类和连接状态等信息。
对于蓝⽛硬件地址⽽⾔,这个类仅仅是⼀个瘦包装器。
这个类的对象是不可改变的。
这个类上的操作会使⽤这个⽤来创建BluetoothDevice类的BluetoothAdapter类执⾏在远程蓝⽛硬件上。
为了获得BluetoothDevice,类,使⽤BluetoothAdapter.getRemoteDevice(String)⽅法去创建⼀个表⽰已知MAC地址的设备(⽤户可以通过带有BluetoothAdapter类来完成对设备的查找)或者从⼀个通过 BluetoothAdapter.getBondedDevices()得到返回值的有联系的设备集合来得到该设备。
注意:需要权限 参见 三、常量String ACTION_ACL_CONNECTED⼴播活动:指明⼀个与远程设备建⽴的低级别(ACL)连接。
总是包含附加域ACL连接通过Android蓝⽛栈⾃动进⾏管理需要权限接收常量值: "android.bluetooth.device.action.ACL_CONNECTED"String ACTION_ACL_DISCONNECTED⼴播活动:指明⼀个来⾃于远程设备的低级别(ACL)连接的断开总是包含附加域ACL连接通过Android蓝⽛栈⾃动进⾏管理需要权限接收常量值: "android.bluetooth.device.action.ACL_DISCONNECTED"String ACTION_ACL_DISCONNECT_REQUESTED⼴播活动:指明⼀个为远程设备提出的低级别(ACL)的断开连接请求,并即将断开连接。
Android蓝牙编程技巧
2016年第21期信息与电脑China Computer&Communication软件开发与应用Android蓝牙编程技巧冯基钊 赵航涛(无锡科技职业学院,江苏 无锡 214028)摘 要:蓝牙通讯具有功耗低、传输速率高和安全等优点,因此成了当前智能手机与传感设备通讯最主要的途径。
如何在Android中编写蓝牙通讯程序成为一个非常重要的课题。
笔者介绍了Android蓝牙编程的基本结构和主要API,首重介绍了蓝牙后台子线程、主线程的编程方法和技巧。
关键词:蓝牙通讯;Android编程;线程中图分类号:TN925 文献标识码:A 文章编号:1003-9767(2016)21-143-02蓝牙是一个短距离无线通信标准,适用于手机、计算机和其他电子设备之间的通信。
蓝牙采用分散式网络结构以及快跳频和短包技术,支持点对点及点对多点通信,工作在全球通用的2.4GHz ISM频段,无须申请许可证,采用时分双工传输方案实现全双工传输,具有传输速率高、功耗低、成本低的优点。
Android系统作为智能手机主流的操作系统,提供了大量蓝牙底层API,大大方便了手机蓝牙通讯程序的开发。
Android蓝牙通讯程序一般包括用于数据显示和操作的主线程和负责监听蓝牙设备接入、进行蓝牙设备连接、进行数据双向传输的后台子线程两部分。
由于后台子线程不能直接更新主线程的界面,因此借助Handler对象完成后台子线程与主线程间的数据传递。
1 Android提供的蓝牙APIAndroid蓝牙API主要存在于"android.bluetooth"包中,它提供了如扫描设备、连接设备以及对设备间的数据传输进行管理的类。
(1)BluetoothAdapter类。
它代表本地设备(手机、电脑等)的蓝牙适配器对象。
通过它可以对蓝牙设备进行基本开发,如开关蓝牙设备、扫描蓝牙设备、设置/获取蓝牙状态信息等。
可以通过调用该类的getDefaultAdapter()方法获得蓝牙适配器。
Silicon Labs Bluetooth SDK 2.12.3.0 用户指南说明书
Bluetooth ® SDK 2.12.3.0 GA19Q2 Gecko SDK Suite September 13, 2019Silicon Labs is a leading vendor in Bluetooth hardware and software technologies, used in products such as sports and fitness, consumer electronics, beacons, and smart home applications. The core SDK is an advanced Bluetooth 5-compliant stack that provides all of the core functionality along with multiple API to simplify development. The core func-tionality offers both standalone mode allowing a developer to create and run their appli-cation directly on the SoC, or in NCP mode allowing for the use of an external host MCU. Extensions to the SDK include Bluetooth Mesh and Apple ® HomeKit ® for customers seek-ing the additional capabilities.These release notes cover SDK version(s): 2.12.3.0 released on September 13, 2019 2.12.2.0 released on August 16, 2019 2.12.1.0 released on July 19, 2019 2.12.0.0 released on June 7, 2019Compatibility and Use NoticesIf you are new to the Silicon Labs Bluetooth SDK, see Using This Release . Compatible Compilers:IAR Embedded Workbench for ARM (IAR-EWARM) version 8.30.1• Using w ine to build with the IarBuild.exe command line utility or IAR Embedded Workbench GUI on macOS or Linux could result inincorrect files being used due to collisions in wine’s hashing algorithm for generating short file names. • Customers on macOS or Linux are advised not to build with IAR outside of Simplicity Studio. Customers who do should carefullyverify that the correct files are being used. GCC (The GNU Compiler Collection) version 7.2.1, provided with Simplicity Studio.KEY FEATURESSupport for BG21 and MG21 modules: BGM210P, MGM210PContents Contents1New Items (3)1.1New Features (3)1.2New APIs (3)2Improvements (4)2.1Changed APIs (4)3Fixed Issues (5)4Known Issues in the Current Release (7)5Deprecated Items (8)6Removed Items (9)7Using This Release (10)7.1Installation and Use (10)7.2Support (10)8Legal (11)8.1Disclaimer (11)8.2Trademark Information (11)New Items 1 New ItemsGecko Platform release notes are now available through Simplicity Studio’s Launcher Perspective, under SDK Documentation > Blue-tooth SDK 2.12.n.n > Release Notes. The Gecko Platform code provides functionality that supports protocol plugins and APIs in the form of drivers and other lower layer features that interact directly with Silicon Labs chips and modules. Gecko Platform components include EMLIB, EMDRV, RAIL Library, NVM3, and mbedTLS.1.1 New FeaturesAdded in release 2.12.2.0PHY settings on a Bluetooth connectionThis feature allows the application to set preferred PHYs the stack should take into account in PHY selection, and the PHYs the stack can accept when the remote device initiates a PHY update.Added in release 2.12.0.0Advertising packet chainingWith this feature, the total amount of advertising data in an advertising packet can be up to 1650 bytes in extended advertising.1.2 New APIsFor additional documentation and command descriptions please refer to the Bluetooth Software API Reference Manual.Added in release 2.12.2.0cmd_le_gap_set_conn_phycmd_le_connection_set_preferred_phyAdded in release 2.12.0.0cmd_gatt_server_set_max_mtucmd_le_connection_set_timing_parameterscmd_le_gap_set_conn_timing_parameterscmd_le_gap_set_long_advertising_datacmd_sm_set_minimum_key_sizecmd_system_data_buffer_writecmd_system_data_buffer_clearImprovements 2 Improvements2.1 Changed APIsChanged in release 2.12.0.0cmd_le_gap_bt5_set_adv_dataRemoved the 191 bytes advertising data limitation for extended advertising.cmd_le_gap_set_adv_dataRemoved the 191 bytes advertising data limitation for extended advertising.evt_le_gap_extended_scan_responseAdded new value in packet_type parameter for data incomplete status.evt_le_gap_scan_responseAdded new value in packet_type parameter for data incomplete status.evt_sync_dataAdded new value in data_status parameter for data incomplete status.3 Fixed IssuesFixed in release 2.12.3.0404249 Fix an issue that radio may get stuck in RX state with low RSSI signals, which causes the Bluetooth stack becoming unre-sponsive.415812 Fix an IOP problem with some smartphones that connection requests from these phones are often not received, which causes connections taking too long to establish.430101 Fix an issue that setting TX Power between -13 and 0 dBm results in much lower transmit power. This issue can cause a noticeable performance degradation in RF polluted environments.430225 Fix PS Key CTUNE control for EFR32xG21 parts.431563 Fix poor OTA performance.431657 Fix a memory leak when the stack opened a connection but connection failed to establish after 6 connection intervals. Fixed in release 2.12.2.0376747 Fix the voice_over_ble Thunderboard example to dynamically perform GATT service discovery for using correct handles to read characteristic values.402234 More fixes for the disconnection issue caused by connection updates with certain parameters.420208 Fix NCP wake-up pin polarity handling (NCP_WAKEUP_POLARITY), so that the defined polarity is taken into account. 420807 Fix the usage of HFXO calibration values for xGM210 modules to avoid reading incorrect calibration values at initialization time.Fixed in release 2.12.1.0384097Fix unstable connection issue while the master device has multiple simultaneous connections and is performing scanning. 384144 Fix an issue that the stack may return the link layer procedure response timeout error when closing a Bluetooth connec-tion.391346 After advertising is started the stack will send the first advertisement straight away. Previously it might send it after the first advertisement interval has elapsed.402234 Fix disconnection issue when performing connection update with slave latency and specific interval parameters.403819 Apploader can now write images right up to the NVM start address.406537 Fix missing ADI field in chained advertisement packets.406691 The stack can now handle 255 bytes data in cmd_system_data_buffer_write command.406977 Periodic advertising data can now be set in stack when the periodic advertising has not been started. Previously this command returns an error.407673 The stack now blocks the example LTK in Bluetooth specification if sent by the other device. This security improvement addresses vulnerability CVE-2019-2102.407871 Fix default RF antenna pin selection for EFR32xG21 parts, radio boards and xGM210 modules.411446 If advertising single event at a time, the stack does not check anymore if packet length would exceed advertising interval.Previously packet_too_long error would have been returned.412625 The stack ensures that the GATT database hash value is calculated when it is first read by command gecko_cmd_gatt_server_read_attribute_value. Previously an incorrect value might be returned in this case. Additionallythe fix also prevents from overwriting the hash value with gecko_cmd_gatt_server_write_attribute_value.412725 A change was introduced in version 2.12.0 which caused compatibility issues with TB Sense mobile app. This change was reversed to fix those issues and it will be reintroduced when board detection gets improved on the TB Sense mobile appside.Fixed in release 2.12.0.0397063 In Bluetooth SDK 2.11.4 and 2.11.5, occasionally the stack is unable to receive all GATT write without response or charac-teristic value notification PDUs.337089 Deleting the bonding of a device while the device is still connected causes the stack using outdated bonding data on the connection. This has been fixed so that the connection is also closed after the bonding has been deleted.384093 The application cannot configure the maximum ATT MTU if GATT client is excluded. This has been fixed by adding a new equivalent API in GATT server class.387745 When Bluetooth runs in RTOS, the stack initialization may cause assertions.391345 Advertising could not be restarted if a timeout has been set previously.396352 Increasing security on a connection with previously bonded devices may fail.398948 The stack does not correctly inform the application about ATT MTU size change if the remote device first denies the stack’s ATT MTU exchange request and then initiates another ATT MTU exchange request.Known Issues in the Current Release 4 Known Issues in the Current ReleaseIssues in bold were added since the previous release.243009 With certain events, GCC breakpoints cannot be set. Change optimization level to none in projectsettings335894 Command gecko_cmd_gatt_discover_primary_services_by_uuidreturns success in case of incomplete parameters.None361592 The sync_data event does not report TX power. None415583 The stack returns wrong state instead of out of memory error if application sends a characteristic notification to allconnections in low memory situation. In application, treat this condition as low memory.420866 With iPhone6, the stack could become unresponsive if it is sending lots of data using characteristic notifications to the phone. In application, do not use a loop waiting for the success of sending characteristic notification operation. When an out of memory error is received from this operation, a timer should be used to retry the operation later.429536 The stack limits the maximum data payload to 191 bytes inextended connectable advertising. However this specific caseis not documented in the API reference manual.None431452 When the requested TX Power is above 0 dBm, the actualtransmit power may deviate randomly.NoneDeprecated Items 5 Deprecated ItemsDeprecated in release 2.12.2.0Deprecated APIscmd_le_connection_set_phyThe replacement is cmd_le_connection_set_preferred_phy.Deprecated in release 2.12.1.0Deprecated item: EFR32BG14 Part SupportReason: The EFR32BG14 is EOL.End-of-Service (EoS) Date: June 2020. As of this EoS date, EFR32BG14 part support will no longer be available in the then current and future GSDK releases, and EFR32BG14 parts will no longer be supported in any GSDK releases.Maintenance Period: From now until the EoS date, only critical bug fixes and security patches may be made available on currently supported GSDK releases.Replacement: EFR32BG13.Deprecated in release 2.12.0.0As of June 2019 Simplicity Studio 3.0 is being deprecated. All access will be removed from Silicon Labs' website at the end of 2019. Deprecated APIscmd_le_gap_set_conn_parametersThe replacement is cmd_le_gap_set_conn_timing_parameters.cmd_le_connection_set_parametersThe replacement is cmd_le_connection_set_timing_parameters.Removed Items 6 Removed ItemsNoneUsing This Release 7 Using This ReleaseThis release contains the following•Silicon Labs Bluetooth stack library•Bluetooth sample applicationsFor more information about the Bluetooth SDK see QSG139: Getting Started with Bluetooth® Software Development. If you are new to Bluetooth see UG103.14: Bluetooth LE Fundamentals.7.1 Installation and UseA registered account at Silicon Labs is required in order to download the Silicon Labs Bluetooth SDK. You can register at https:///apex/SL_CommunitiesSelfReg?form=short.Stack installation instruction are covered in QSG139: Getting Started with Bluetooth® Software Development.Use the Bluetooth SDK with the Silicon Labs Simplicity Studio V4 development platform. Simplicity Studio ensures that most software and tool compatibilities are managed correctly. Install software and board firmware updates promptly when you are notified. Documentation specific to the SDK version is installed with the SDK. Additional information can often be found in the knowledge base articles (KBAs). API references and other information about this and earlier releases is available on https:///.7.2 SupportDevelopment Kit customers are eligible for training and technical support. You can use the Silicon Labs Bluetooth LE web page to obtain information about all Silicon Labs Bluetooth products and services, and to sign up for product support.You can contact Silicon Laboratories support at /support.Legal8 Legal8.1 DisclaimerSilicon Labs intends to provide customers with the latest, accurate, and in-depth documentation of all peripherals and modules available for system and software implementers using or intending to use the Silicon Labs products. Characterization data, available modules and peripherals, memory sizes and memory addresses refer to each specific device, and "Typical" parameters provided can and do vary in different applications.Application examples described herein are for illustrative purposes only.Silicon Labs reserves the right to make changes without further notice and limitation to product information, specifications, and descrip-tions herein, and does not give warranties as to the accuracy or completeness of the included information. Silicon Labs shall have no liability for the consequences of use of the information supplied herein. This document does not imply or express copyright licenses granted hereunder to design or fabricate any integrated circuits. The products are not designed or authorized to be used within any Life Support System. A "Life Support System" is any product or system intended to support or sustain life and/or health, which, if it fails, can be reasonably expected to result in significant personal injury or death. Silicon Labs products are not designed or authorized for military applications. Silicon Labs products shall under no circumstances be used in weapons of mass destruction including (but not limited to) nuclear, biological or chemical weapons, or missiles capable of delivering such weapons.8.2 Trademark InformationSilicon Laboratories Inc.® , Silicon Laboratories®, Silicon Labs®, SiLabs® and the Silicon Labs logo®, Bluegiga®, Bluegiga Logo®, Clockbuilder®, CMEMS®, DSPLL®, EFM®, EFM32®, EFR, Ember®, Energy Micro, Energy Micro logo and combinations thereof, "the world’s most energy friendly microcontrollers", Ember®, EZLink®, EZRadio®, EZRadioPRO®, Gecko®, ISOmodem®, Micrium, Preci-sion32®, ProSLIC®, Simplicity Studio®, SiPHY®, Telegesis, the Telegesis Logo®, USBXpress®, Zentri, Z-Wave and others are trade-marks or registered trademarks of Silicon Labs.ARM, CORTEX, Cortex-M3 and THUMB are trademarks or registered trademarks of ARM Holdings.Keil is a registered trademark of ARM Limited.Apple and HomeKit are registered trademarks of Apple Inc. All other products or brand names mentioned herein are trademarks of their respective holders.。
Android之Bluetooth(蓝牙)编程实现
//HEXCheckBox = (CheckBox) findViewById(R.id.radioMale); /*****************************************************************/ /*****************************************************************/ /*****************************************************************/ breakButton = (Button) findViewById(R.id.button_break); // 得到当地的蓝牙适配器 mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter(); /*****************************************************************/ /*****************************************************************/ /*****************************************************************/ // 初始化 CheckBox //checkBox_sixteen = (CheckBox) findViewById(R.id.checkBox_sixteen); /*****************************************************************/ /*****************************************************************/ /*****************************************************************/
Android 3.1 r1 API中文文档(6)——ImageView
Android 3.1 r1 API中文文档(6)——ImageView前言本章内容是android.widget.ImageView,为早前发布版本的完整版,版本为Android 3.1 r1,翻译来自"cnmahj"和"农民伯伯",欢迎大家访问"cnmahj"的博客:,再次感谢"/cnmahj"!欢迎你一起参与Android的中文翻译,联系我over140@。
声明欢迎转载,但请保留文章原始出处:)博客园:/Android中文翻译组:http://goo.gl/6vJQlImageView译者署名:cnmahj、农民伯伯译者博客:/cnmahj版本:Android 3.1 r1结构继承关系public class View.OnClickListner extends Viewng.Objectandroid.view.Viewandroid.widget.ImageView直接子类ImageButton, QuickContactBadge间接子类ZoomButton类概述显示任意图像,例如图标。
ImageView类可以加载各种来源的图片(如资源或图片库),需要计算图像的尺寸,比便它可以在其他布局中使用,并提供例如缩放和着色(渲染)各种显示选项。
嵌套类enum ImageView.ScaleType将图片边界缩放,以适应视图边界时的可选项XML属性公共方法public final void clearColorFilter ()(译者注:清除颜色过滤,参见这里)public int getBaseline ()返回部件顶端到文本基线的偏移量。
如果小部件不支持基线对齐,该方法返回-1。
返回值小部件顶端到文本基线的偏移量;或者是-1 当小部件不支持基线对齐时。
public boolean getBaselineAlignBottom ()返回当前视图基线是否将考虑视图的底部。
安卓2.3系统官方自带的程序列表
在此我只列出安卓2.3系统官方自带的程序列表,至于其余剩下的第三方如电信和华为绑定的程序就不列出来了.还是先免责声明下:此列表所给的建议纯粹只是以追求过度的纯净核心为目的而列出的建议,并不一定能保证稳定,想要纯净加稳定的话就把以下列表之外的程序全删了就好(包括data 和cust下的).而以下的建议我都是亲测过的,不信的可看这帖,但是如果有按我的建议造成不稳定现象及需要刷机的话,本人一概不负责.说明:/前面是软件名称,/后面是建议,要删的话要连同同名的odex文件一并删除,删前最好备份下,以备恢复.AccountAndSyncSettings.apk 【同步功能/不用可删】删除后点击设置中-帐户同步会出错ApplicationsProvider.apk【应用程序储存/保留】Bluetooth.apk【蓝牙/不用可删,换第三方可删】Browser.apk【谷歌浏览器/换第三方可删】Calculator.apk【计算器/可删】Calendar.apk【日历/换第三方可删】CalendarProvider.apk【日历储存/可删】Camera.apk【照相机/换第三方可删】CertInstaller.apk【证书安装/貌似没用选删】Contacts.apk【联系人/换第三方可删】ContactsProvider.apk【联系人服务/保留】cpwservice.apk【cdma+wlan网的服务/不建议删】DefaultContainerService.apk【默认通讯录服务/楼主惨剧证明必须保留不然无法安装apk包!/】DeskClock.apk【闹钟/不用可删】DownloadProviderUi.apk【啥玩意下载服务Ui/最好不删除】DownloadProvider.apk【啥玩意下载服务/最好不删除】Email.apk【电子邮件/可删】FileManager.apk【文件管理器可删/系统内还有RE呢】FMRadio.apk【收音机可删】Gallery3D.apk 【3d图库/卡得一B删除!!!】HTMLViewer.apk【HTML查看器/没用可删】HuaweiDRMService.apk【华为的受保护数据存储服务/保留】HWDrmApp.apk【华为的受保护数据存储程序/保留】HwWallpaperChooser.apk【华为壁纸选择器/选删】InConfig.apk【IN附加设置/最好不删除】LatinIME.apk【安卓键盘输入法/无中文删之】Launcher2.apk【启动器原生桌面/桌面类软件至少要保留一款,选删】LiveWallpapersPicker.apk【动态壁纸/最好不删除】LiveWallpapers.apk【动态壁纸/同删】MagicSmokeWallpapers.apk【魔幻烟雾壁纸/不用这个的可删之】MediaProvider.apk【媒体储存/这个是不可以删除的如果你删除了你的3D图库不能加载你卡上的图片音乐播放器不能加载卡上的音乐文件】MMITest_II.apk【工程模式中的测试软件/测手机用的,不想测的可删】Mms.apk【原装短信mms/删了会收不到短信。
Android之Bluetooth
Android之Bluetooth对于Android的英文帮助文档,总是看了记不住,远不如对中文资料那么印象深,所以下面的叙述都是对Android帮助文档Bluetooth的翻译。
一、BluetoothAndroid平台包含了对Bluetooth协议栈的支持,允许机器通过Bluetooth设备进行无线数据交换。
应用框架通过Android Bluetooth API访问Bluetooth功能模块。
这些API能让应用无线连接其他Bluetooth设备,实现点对点和多点之间的通信。
运用蓝牙API,Android应用程序可以完成如下操作:1、扫描其他Bluetooth设备。
2、查询配对Bluetooth设备的本地Bluetooth适配器。
3、建立RFCOMM通道。
4、通过服务探索连接到其他设备。
5、与其他设备进行数据传输。
6、管理多个连接二、The Basics本文描述如何使用Android Bluetooth APIs完成Bluetooth通讯的4个必要任务:设置Bluetooth,搜寻本地配对或者可用的Bluetooth设备,连接Bluetooth设备,与Bluetooth设备进行数据传输。
所有可用的Bluetooth APIs都包含在android.bluetooth包中。
下面是建立Bluetooth连接需要用到的类和接口的总结:1、BluetoothAdapter描述本地Bluetooth适配器(Bluetooth接收器)。
BluetoothAdapter是所有Bluetooth相关活动的入口。
运用BluetoothAdapter可以发现其他Bluetooth设备,查询连接(或配对)的设备列表,用已知MAC地址实例化一个BluetoothDevice对象,创建一个BluetoothServerSocket对象侦听其他设备的通信。
2、BluetoothDevice描述一个远程Bluetooth设备。
android中文API
Android2.2——API中文文档一、TextView (1)二、EditText (4)三、AccessibilityService (9)四、Mainfest (10)五、View (15)六、ImagesView (23)七、ImageButton (25)八、QuickContactBadge (27)九、ZoomButton (28)十、CheckBox (30)十一、RadioButton (30)十二、Button (31)十三、ToggleButton (33)十四、ViewStub (35)十五、GridView (38)一、TextView1、结构ng.Object↳android.view.View↳android.widget.TextView2、已知直接子类:Button, CheckedTextView, Chronometer, DigitalClock, EditText3、已知间接子类:AutoCompleteTextView, CheckBox, CompoundButton, ExtractEditText, MultiAutoCompleteTextView, RadioButton, ToggleButton4、XML属性属性名称描述android:autoLink 设置是否当文本为URL链接/email/电话号码/map时,文本显示为可点击的链接。
可选值(none/web/email/phone/map/all)android:autoT ext 如果设置,将自动执行输入值的拼写纠正。
此处无效果,在显示输入法并输入的时候起作用。
android:bufferType 指定getText()方式取得的文本类别。
选项editable 类似于StringBuilder可追加字符,也就是说getText后可调用append方法设置文本内容。
spannable 则可在给定的字符区域使用样式,参见这里1、这里2。
移动应用02_Android蓝牙应用开发
代表一个周边的蓝芽设备(Bluetooth Device)。
BluetoothSocket 透过它,就能使用InputStream 和 OutputStream来与蓝芽设备互相传输数据了。
BluetoothServerSocket 代表一个服务端设备的socket,持续监听外 来的信息。由服务端设备先开启socket,当 由外来要求连结时,服务端接受 时, BluetoothServerSocket会回传一个代 表客方(Client)的BluetoothSocket。 BluetoothClass 叙述着一个蓝芽设备的各项属性。
其中: BLUETOOTH_ADMIN 授权允许启动本手机的蓝芽服务。 BLUETOOTH 授权允许应用程序去进行通信。
启动Server端的蓝芽服务
先启动Server端设备的蓝芽服务, 建立一个独立的线程监听来自Client的 联机要求。如下程序范例:
private static final String NAME = "BluetoothApp"; private static final UUID MY_UUID = UUID.fromString("fa87c0d0-afac-11de-8a390800200c9a66");
Android平台支持蓝芽,让一个设备能与其 它蓝芽设备进行无线通信。Android应用框架 提供API,让Android应用程序能寻找周边的 蓝芽设备,然后监控蓝芽设备之间建立无线 连结,以及进行通信。
使用Android的蓝芽API,应用程序可以: • 搜索及配对周边的蓝芽设备。 • 配对后,取得本机的Bluetooth adapter。 • 建立RFCOMM通道。 • 建立联机(Connection)。 • 实际进行数据传输。 • 管理多条联机。
android蓝牙简单开发示例教程
android蓝⽛简单开发⽰例教程⽬录概述1、权限申请2、打开蓝⽛3、接收蓝⽛状态的改变4、扫描其他的设备5、蓝⽛配对6、获取已经配对的设备7、连接设备概述前段时间学习了⼀些蓝⽛开发的知识,记录⼀下Android中蓝⽛的简单开发。
下⾯是最重要的两个类。
BluetoothAdapter : 蓝⽛适配器,通过getDefaultAdapter ()去获取⼀个实例,如果设备不⽀持蓝⽛的话,返回的是⼀个null对象,通过它,可以打开、关闭蓝⽛,扫描设备、向指定设备创建socket通道…BluetoothDevice : 代表⼀个设备对象,可以通过它获取设备的名字、地址、类型等,也可以创建匹配,建⽴socket通道等等。
1、权限申请<uses-permission android:name="android.permission.BLUETOOTH"/> 使⽤蓝⽛所需要的权限<uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/> 使⽤扫描和设置蓝⽛的权限(申明这⼀个权限必须申明上⾯⼀个权限)Android6以上版本,扫描其他蓝⽛还需要位置权限// Android 9 以下版本<user-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>// Android 9 以上<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>2、打开蓝⽛mBluetoothAdapter = BluetoothAdapter.getDefaultAdapter();// 如果设备不⽀持蓝⽛if (mBluetoothAdapter == null){return;}// 设备⽀持蓝⽛功能,调⽤startActivityForResult去启动蓝⽛if (!mBluetoothAdapter.isEnabled()){unch(new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE));}打开蓝⽛功能是通过startActivity去启动的,但是startActivity这个函数已经过期了,所以我使⽤官⽅推荐的Activity Result替代它ActivityResultLauncher<Intent> startBlueTooth = registerForActivityResult(new ActivityResultContracts.StartActivityForResult(),new ActivityResultCallback<ActivityResult>() {@Overridepublic void onActivityResult(ActivityResult result) {if (result==null){Toast.makeText(BlueToothActivity.this, "open failed", Toast.LENGTH_SHORT).show();}else {if (result.getResultCode() == RESULT_CANCELED){Toast.makeText(BlueToothActivity.this,"⽤户取消",Toast.LENGTH_SHORT);}}}});3、接收蓝⽛状态的改变通过⼴播去接收蓝⽛状态的改变class BluetoothStateChangeReceiver extends BroadcastReceiver{public int DEFAULT_VALUE_BLUETOOTH = 1000;@Overridepublic void onReceive(Context context, Intent intent) {String action = intent.getAction();if (BluetoothAdapter.ACTION_STATE_CHANGED.equals(action)){int state = intent.getIntExtra(BluetoothAdapter.EXTRA_STATE,DEFAULT_VALUE_BLUETOOTH); switch(state){case BluetoothAdapter.STATE_ON:Log.d(TAG, "onReceive: open");break;case BluetoothAdapter.STATE_OFF:Log.d(TAG, "onReceive: off");break;case BluetoothAdapter.STATE_TURNING_ON :Log.d(TAG, "onReceive: 正在打开");break;case BluetoothAdapter.STATE_TURNING_OFF:Log.d(TAG, "onReceive: 正在关闭");break;}}}}别忘了⼴播的注册和解注册IntentFilter filter = new IntentFilter(BluetoothAdapter.ACTION_STATE_CHANGED);stateReceiver = new BluetoothStateChangeReceiver() ;registerReceiver(stateReceiver,filter);4、扫描其他的设备同样通过⼴播接收,action是BluetoothDevice.ACTION_FOUNDclass MyReceiver extends BroadcastReceiver{@Overridepublic void onReceive(Context context, Intent intent) {String action = intent.getAction();if (BluetoothDevice.ACTION_FOUND.equals(action)) {// 从intent对象中获取蓝⽛设备的信息BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);// 当发现新设备不存在于配对列表中时添加if (device.getBondState() != BluetoothDevice.BOND_BONDED) {blueNames.add(device.getName()+"\t"+device.getAddress());}blueAdpater.notifyDataSetChanged();Log.d(TAG, "onReceive: " + device.getName());}}}动态注册⼴播IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);registerReceiver(mReceiver,filter);开启扫描mBluetoothAdapter.startDiscovery();5、蓝⽛配对public class BondReceiver extends BroadcastReceiver{@Overridepublic void onReceive(Context context, Intent intent) {if (BluetoothDevice.ACTION_BOND_STATE_CHANGED.equals(intent.getAction())){BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);switch(device.getBondState()){case BluetoothDevice.BOND_BONDED:Log.d(TAG, "onReceive: 配对完成");break;case BluetoothDevice.BOND_BONDING:Log.d(TAG, "onReceive: 正在配对");break;case BluetoothDevice.BOND_NONE:Log.d(TAG, "onReceive: 取消配对");break;}}}}6、获取已经配对的设备已经配对的设备会被存储起来,通过BluetoothAdpater直接获取即可Set<BluetoothDevice> paireDevices = mBluetoothAdapter.getBondedDevices();if (paireDevices.size()>0){for (BluetoothDevice pairedDevice : pairedDevices) {blueNames.add(pairedDevice.getName()+" "+pairedDevice.getAddress());Log.d(TAG, "onClick: "+pairedDevice.getName());}}7、连接设备想要在两台设备之间创建连接,必须实现客户端和服务端机制,他们之间使⽤套接字机制进⾏连接,服务端开放服务器套接字,客户端通过MAC地址向服务端发起连接。
android中文API合集(50篇)android中文翻译组
Android中文API合集(50篇)Android中文翻译组关于API文档(Reference)是Android开发的基础,三年来(2007-2010)官方仍未出中文版的API,Android中文翻译组聚一批从事Android开发人员、论坛版主、大学生、研究生等利用业余时间对Android的API进行翻译,人数从1人到80+人不断壮大,发表的译文从1篇到50篇不断增多,为的只是多一份Android中文资料,欢迎更多朋友的加入,联系我们:QQ:36408253 Gtalk:over140@欢迎大家访问翻译组在淘蝌蚪上搭建的项目:/project/view/404/(cnAndroid),可使用SVN客户端匿名下载:/svn/cnAndroid,在这里可以查看翻译组当前的最新的进度和翻译稿,也可以直接向我们提问。
关于翻译组的更多介绍,请看这里。
章节结构继承关系public final class Manifest extends Objectng.Object android.Manifest内部类class Manifest.permission权限class Manifest.permission_group权限组构造函数public Manifest ()构造函数补充文章精选android Manifest.xml选项Manifest.permission结构继承关系public static final class Manifest.permission extends Objectng.Objectandroid. Manifest.permission常量结构继承关系public static final class Manifest.permission_group extends Objectng.Objectandroid. Manifest.permission_group常量结构public abstract class AccessibilityService extends Serviceng.Objectandroid.content.Contextandroid.content.ContextWrapperandroid.app.Serviceandroid.accessibilityservice.Accessibil ityService类概述当AccessibilityEvent事件被启动后AccessibilityService 会接收回调函数运行于后台,这些事件指的是在用户接口间的状态转换,比如,焦点变化,按钮被点击等。
Bluetooth讲义
Bluetooth讲义蓝牙微网(Piconet)中,蓝牙组件分为Mater与Slave。
其中,开启连接的蓝牙装置称为Mater,而其它在Plconet中的蓝牙装置称为Slave。
在Piconet建立好后,则Mater与Slave的角色可以互换。
蓝牙标准使用跳频(FH)技术来作为信号的再调变方式以克服无线通信的多路径衰减及共频道干扰。
其中跳频序列与频道接入码由Piconet中Mater来决定,而Piconet中也只允许使用一组跳频序列以作为Mater与一个以上的Slave间的通信调变。
另外,在蓝牙空中接口中,定义了两种Mater与Slave间的链路以建立两者间的连接。
分别为点对点同步连接导向链路(SCO)与点对多点异步无连接链路(ACL)。
——对于蓝牙的无线接入过程控制器主要分为Standby与Connection两大状态。
在这两大状态下又分为传呼(Page)、传呼扫描(PageScan)、询呼(Inquiry)、与询呼扫描(InquiryScan)四大子状态;另外,传呼下有主机响应(MaterRepone)子状志,传呼扫描下有服务机响应(SlaveRepone)子状态,询呼扫描下有询呼响应(InquiryRepone)子状态.Bluetooth是一种短距离无线通讯传输接口,允许的传输距离长度设计为10米到100米,当含有Bluetooth的手机或计算机等在多个含Bluetooth装置的环境中,设备尚未加入蓝牙微网时,它会先进入待机状态。
在此状态下,它会随时监听传呼讯息,直到收到的信号与自己本身的识别码有相关时,自己才会激活Bluetooth服务称为Master时,开始寻找外围所有Bluetooth装置称为Slave,并且呼叫连结程序。
接下来则进行识别码的确认及信号时间的同步,以便决定往后跳频之Sequence,而将这些装置连成一个群体,称为微网Piconet在一个区域内,同时可以加入多个微网,这种多个微网架构所组成称为叠网ScatternetGenericAcceProfile(GAP)提供了作为蓝牙设备基本功能的设备检索和安全性相关服务GenericObjectE某changeProfile(GOEP)本配置文件并非作为个体而被使用,而是定义了ObjectPuhProfile 等使用OBE某协议的对象交换类配置文件的共通内容SerialPortProfile(SPP)将RS232的串口通信进行了无线化配置文件为了使用BT无线技术,设备必须能够翻译特定BT配置文件。
androidapi中文文档
android:inputType
设置文本的类型,用于帮助输入法显示合适的键盘类型。有如下值设置:none、text、textCapCharacters字母大小、textCapWords单词首字母大小、textCapSentences仅第一个字母大小、textAutoCorrect、textAutoComplete自动完成、textMultiLine多行输入、textImeMultiLine输入法多行(如果支持)、textNoSuggestions不提示、textEmailAddress电子邮件地址、textEmailSubject邮件主题、textShortMessage短信息(会多一个表情按钮出来,点开如下图:
android:scrollHorizontally
设置文本超出TextView的宽度的情况下,是否出现横拉条。
android:selectAllOnFocus
如果文本是可选择的,让他获取焦点而不是将光标移动为文本的开始位置或者末尾位置。TextView中设置后无效果。
android:shadowColor
指定文本阴影的颜色,需要与shadowRadius一起使用。参见TextView中此属性的截图。
Android蓝牙开发实例解析
Android蓝⽛开发实例解析在使⽤⼿机时,蓝⽛通信给我们带来很多⽅便。
那么在Android⼿机中怎样进⾏蓝⽛开发呢?本⽂以实例的⽅式讲解Android蓝⽛开发的知识。
1、使⽤蓝⽛的响应权限XML/HTML代码<uses-permission android:name="android.permission.BLUETOOTH"/><uses-permission android:name="android.permission.BLUETOOTH_ADMIN"/>2、配置本机蓝⽛模块在这⾥⾸先要了解对蓝⽛操作⼀个核⼼类BluetoothAdapter。
BluetoothAdapter adapter = BluetoothAdapter.getDefaultAdapter();//直接打开系统的蓝⽛设置⾯板Intent intent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);startActivityForResult(intent, 0x1);//直接打开蓝⽛adapter.enable();//关闭蓝⽛adapter.disable();//打开本机的蓝⽛发现功能(默认打开120秒,可以将时间最多延长⾄300秒)Intent discoveryIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_DISCOVERABLE);discoverableIntent.putExtra(BluetoothAdapter.EXTRA_DISCOVERABLE_DURATION, 300);//设置持续时间(最多300秒)3、搜索蓝⽛设备使⽤BluetoothAdapter的startDiscovery()⽅法来搜索蓝⽛设备。
第10章 蓝牙传输编程-Android移动网络程序设计案例教程-傅由甲-清华大学出版社
2. Android蓝牙API介绍
2.2 BluetoothDevice类
代表了一个远端蓝牙设备,使用它请求远端蓝牙 设备连接或者获取远端蓝牙设备的名称、地址、 种类和绑定状态(其信息封装在BluetoothSocket 中)
2.2 BluetoothDevice类
BluetoothDevice类中主要的方法
2.3 BluetoothServerSocket类
BluetoothServerSocke类中主要方法
方法 accept() close()
含义
接收连接进来的客户端,当没有客户端连接时, 该方法会一直阻塞 关闭BluetoothServerSocket,释放所有相关资源
2. Android蓝牙API介绍
于蓝牙设备的管理。 BluetoothServerSocket和BluetoothSocket
类用于蓝牙Байду номын сангаас信。
2. Android蓝牙API介绍
2.1 BluetoothAdapter类
代表本地蓝牙适配器,是所有蓝牙交互的入口点。 利用它可以发现其它蓝牙设备和查询绑定的设备。
使用已知的MAC地址实例化一个蓝牙设备和建立 一个BluetoothServerSocket(作为服务器)来监 听来自其它设备的连接。
2. Android蓝牙API介绍
2.3 BluetoothServerSocket类
用于监听可能到来的连接请求,属于服务器端。 为了连接两个蓝牙设备,必须有一个设备作为服
务器打开一个服务套接字。当远端设备发起连接 请求并取得连接时,该类会得到连接的 BluetoothSocket(客户端)。
含义 取消当前设备的搜索 检查蓝牙地址字符串的有效性,如0:43:A8:23:10:F0,字母必须大 写 关闭/打开本地蓝牙适配器 获取本地蓝牙硬件地址 获取默认BluetoothAdapter 获取本地蓝牙名称 根据指定的蓝牙地址获取远程蓝牙设备
- 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
- 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
- 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。
BluetoothServerSocket
译者署名:Android Club SYSU
译者链接:
版本:Android 2.3 r1
结构
继承关系
public final class BluetoothServerSocket extends Object implements Closeable
ng.Object
android.bluetooth.BluetoothServerSocket
类概述
一个蓝牙监听端口。
蓝牙端口监听接口和TCP端口类似:Socket和ServerSocket类。
在服务器端,使用BluetoothServerSocket类来创建一个监听服务端口。
当一个连接被BluetoothServerSocket所接受,它会返回一个新的BluetoothSocket来管理该连接。
在客户端,使用一个单独的BluetoothSocket类去初始化一个外接连接和管理该连接。
最通常使用的蓝牙端口是RFCOMM,它是被Android API支持的类型。
RFCOMM是一个面向连接,通过蓝牙模块进行的数据流传输方式,它也被称为串行端口规范(Serial Port Profile,SPP)。
为了创建一个对准备好的新来的连接去进行监听BluetoothServerSocket类,使用BluetoothAdapter.listenUsingRfcommWithServiceRecord()方法。
然后调用accept()方法去监听该链接的请求。
在连接建立之前,该调用会被阻断,也就是说,它将返回一个BluetoothSocket 类去管理该连接。
每次获得该类之后,如果不再需要接受连接,最好调用在BluetoothServerSocket类下的close()方法。
关闭BluetoothServerSocket类不会关闭这个已经返回的BluetoothSocket类。
BluetoothSocket类线程安全。
特别的,close()方法总会马上放弃外界操作并关闭服务器端口。
注意:需要BLUETOOTH权限。
参见
BluetoothSocket
公共方法
Block until a connection is established, with timeout.
阻塞直到一个带超时的连接已经建立。
在一个成功建立的连接上返回一个已连接的BluetoothSocket类。
每当该调用返回的时候,它可以在此调用去接收以后新来的连接。
close()方法可以用来放弃从另一线程来的调用。
参数
timeout (译者注:阻塞超时时间)
返回值
已连接的BluetoothSocket
异常
IOException 出现错误,比如该调用被放弃,或者超时。
Block until a connection is established.
阻塞直到一个连接已经建立。
(译者注:默认超时时间设置为-1,见源码)在一个成功建立的连接上返回一个已连接的BluetoothSocket类。
每当该调用返回的时候,它可以在此调用去接收以后新来的连接。
close()方法可以用来放弃从另一线程来的调用。
返回值
已连接的BluetoothSocket
异常
IOException 出现错误,比如该调用被放弃,或者超时。
public void close ()
马上关闭端口,并释放所有相关的资源。
在其他线程的该端口中引起阻塞,从而使系统马上抛出一个IO异常。
关闭BluetoothServerSocket不会关闭接受自accept()的任意BluetoothSocket。
异常
IOException。