Settings中蓝牙连接流程

1、蓝牙界面
com/android/settings/bluetooth/BluetoothSettings.java
来看打开做了什么


Settings中蓝牙连接流程_第1张图片
image.png
Settings中蓝牙连接流程_第2张图片
image.png

com/android/settings/bluetooth/BluetoothEnabler.java


Settings中蓝牙连接流程_第3张图片
image.png

mSwitchBar.addOnSwitchChangeListener(this);

Settings中蓝牙连接流程_第4张图片
image.png

这个就是开关流程

2、来看下配对连接流程
com/android/settings/bluetooth/BluetoothSettings.java

image.png

com/android/settings/bluetooth/DeviceListPreferenceFragment.java


image.png

com/android/settings/bluetooth/BluetoothDevicePreference.java


Settings中蓝牙连接流程_第5张图片
image.png

来看配对


Settings中蓝牙连接流程_第6张图片
image.png

com/android/settingslib/bluetooth/CachedBluetoothDevice.java
Settings中蓝牙连接流程_第7张图片
image.png

android/bluetooth/BluetoothDevice.java


Settings中蓝牙连接流程_第8张图片
image.png

alps/packages/apps/Bluetooth/src/com/android/bluetooth/btservice/BondStateMachine.java

Settings中蓝牙连接流程_第9张图片
image.png
Settings中蓝牙连接流程_第10张图片
image.png

private static IBluetooth sService;
extends IBluetooth.Stub
com/android/bluetooth/btservice/AdapterService.java

Settings中蓝牙连接流程_第11张图片
image.png

com/android/bluetooth/btservice/AdapterService.java


Settings中蓝牙连接流程_第12张图片
image.png

你可能感兴趣的:(Settings中蓝牙连接流程)