您好,欢迎光临本网站![请登录][注册会员]  
文件名称: Android Bluetooth模块
  所属分类: Android
  开发工具:
  文件大小: 103kb
  下载次数: 0
  上传时间: 2011-04-13
  提 供 者: mys***
 详细说明: 在SystemServer 启动的时候,会生成一个BluetoothDeviceService 的实例, // Skip Bluetooth if we have an emulator kernel // TODO: Use a more reliable check to see if this product should // support Bluetooth - see bug 988521 if (SystemProperties.get("ro.kernel.qemu").equals("1")) { Log.i(TAG, "Registering null Bluetooth Service (emulator)"); ServiceManager.addService(Context.BLUETOOTH_SERVICE, null); } else if (factoryTest == SystemServer.FACTORY_TEST_LOW_LEVEL) { Log.i(TAG, "Registering null Bluetooth Service (fac tory test)"); ServiceManager.addService(Context.BLUETOOTH_SERVICE, null); } else { Log.i(TAG, "Starting Bluetooth Service."); bluetooth = new BluetoothDeviceService(context); bluetooth.init(); ServiceManager.addService(Context.BLUETOOTH_SERVICE, bluetooth); int bluetoothOn = Settings.System.getInt(mContentResolver, Settings.System.BLUETOOTH_ON, 0); if (bluetoothOn > 0) { bluetooth.enable(null); } } BluetoothDeviceService 会生成一个BluetoothEventLoop 实例,它们两者均通过DBUS 来和 BlueZ 通信。BluetoothDeviceService 是通过DBUS 向BlueZ 发送命令,而命令的返回结果则 是由BlueZ 通过DBUS 传回给BluetoothEventLoop 的(具体交互请参见BlueZ 的 dbus_api.txt ) ,BlueZ 也会通过DBUS 向BluetoothEventLoop 发送一些事件通知。 BluetoothEventLoop 和外部的接口是通过预先定义的Intent, 初始的时候蓝牙是没有使能的,要通过BluetoothSettings 或者WirelessSettings 来打开蓝牙设 备,然后通过BluetoothSettings 去查找附近的其他蓝牙设备,找到后可以建立RFCOMM 连 接和配对。 ...展开收缩
(系统自动生成,下载前可以参看下载内容)

下载文件列表

相关说明

  • 本站资源为会员上传分享交流与学习,如有侵犯您的权益,请联系我们删除.
  • 本站是交换下载平台,提供交流渠道,下载内容来自于网络,除下载问题外,其它问题请自行百度
  • 本站已设置防盗链,请勿用迅雷、QQ旋风等多线程下载软件下载资源,下载后用WinRAR最新版进行解压.
  • 如果您发现内容无法下载,请稍后再次尝试;或者到消费记录里找到下载记录反馈给我们.
  • 下载后发现下载的内容跟说明不相乎,请到消费记录里找到下载记录反馈给我们,经确认后退回积分.
  • 如下载前有疑问,可以通过点击"提供者"的名字,查看对方的联系方式,联系对方咨询.
 相关搜索: Android Bluetooth
 输入关键字,在本站1000多万海量源码库中尽情搜索: