从BroadcastReceiver(蓝牙)返回值

时间:2017-10-26 12:31:52

标签: java android asynchronous bluetooth

我正在尝试通过实现自己的android蓝牙库进行蓝牙聊天。我希望图形部分和逻辑部分之间有明确的区分(模块化)。

要获取蓝牙设备列表,我在我的 BluetoothManager 类(库)中以编程方式注册了一个新的BroadcastReceiver。

我想将这些值返回或存储在此类的数组中,以便我可以从我的(外部)活动/片段访问它们。

我该怎么做?

这是BluetoothManager(库)的代码:

public class BluetoothManager {

    private BluetoothAdapter bluetoothAdapter;
    private Context context;

    public BluetoothManager(Context context) {
        this.context = context;
        this.bluetoothAdapter = BluetoothAdapter.getDefaultAdapter();
        if (bluetoothAdapter == null) {
            Log.d("[BluetoothManager]", "Error device does not support Bluetooth");
        }
    }

    // Create a BroadcastReceiver for ACTION_FOUND.
    private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                // Get the BluetoothDevice object and its info from the Intent.
                BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                // Add value into an array or return --> TODO 
            }
        }
    };

    public void discovery(){
        // Check if the device is already "discovering". If it is, then cancel discovery.
        if (bluetoothAdapter.isDiscovering()) {
            bluetoothAdapter.cancelDiscovery();
        }
        // Start Discovery
        bluetoothAdapter.startDiscovery();
        // Register for broadcasts when a device is discovered.
        IntentFilter filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
        context.getApplicationContext().registerReceiver(mReceiver, filter);
    }

    ...

}

这是片段中的代码:

public class TabFragment extends ListFragment implements AdapterView.OnItemClickListener {

private BluetoothManager bluetoothManager;

@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
    View fragmentView = inflater.inflate(R.layout.fragment_tab_fragment2, container, false);

    Button button = fragmentView.findViewById(R.id.button2);
    button.setOnClickListener(new View.OnClickListener() {
        public void onClick(View v) {
            bluetoothManager = new BluetoothManager(getContext());
            if(bluetoothManager.activeBluetooth()){
                bluetoothManager.discovery();
                // Get Values here --> TODO
            }
        }
    });

    // Add return values into a list
    //final String[] items = ...;
    final ArrayAdapter<String> aa = new ArrayAdapter<String>(getActivity(),
            android.R.layout.simple_list_item_1, items);
    setListAdapter(aa);

    return fragmentView;
    }
}

2 个答案:

答案 0 :(得分:1)

您无法返回值格式广播接收器作为其事件驱动。您可以在onReceive()中执行的操作您可以将这些值全局保存到Collection(在同一个类或Singleton包装类中),然后在整个应用程序中使用它。

要发送值回调更新,另一个本地广播接收器将会有所帮助。

答案 1 :(得分:1)

发现可用的蓝牙设备列表是异步的。接收广播后,BluetoothManager类可以将更新的设备列表保存在列表成员变量中,并公开公共getter方法以从Activity或fragment中检索它。此外,请考虑向您的活动公开监听器以提供更新的列表,因为设备可以动态添加或删除。在任何时候,UI都应该在收到更新的设备列表时自行刷新。

public void onClick(View v) { bluetoothManager = new BluetoothManager(getContext()); ...}

是一个坏主意。理想情况下,您必须在活动或片段的onCreate中实例化您的BluetoothManager类,以便在用户单击按钮之前及早发现设备列表。

我的建议是:

  1. 在onCreate of Activity中实例化BluetoothManager,更改构造函数以接受回调对象,以便在设备列表发生更改时通知。
  2. 收听BluetoothManager中的广播以识别设备的添加或删除。更新您的本地列表,每当更新发生时,通知用户界面的回调
  3. 在您接收来自BluetoothManager类的更新
  4. 时,在activity / fragment中实现回调并更新UI
  5. 当用户点击该按钮时,请致电BluetoothManager以获取更新的设备列表并更新您的用户界面。
  6. 从活动的onDestroy取消注册在BluetoothManager中注册的广播(非常重要。否则会导致内存泄漏
  7. 或者,如果您希望与多个活动共享蓝牙管理器实例,请将BluetoothManager作为单例并使用应用程序上下文注册BroadcastReceiver。当您的所有活动都被销毁并且您不再需要接收器时,请确保取消注册BroadcastReceiver。

    <强>更新 回调可能只是您的活动或片段实现的接口。示例代码如下:

            public interface BluetoothDevicesAvailable {
        void onBluetoothDeviceListChanged(List<BluetoothDevice> deviceList);
        }
    
        public class SomeActivity implements BluetoothDevicesAvailable {
        //... Some code
    
        @Override
        public void onBluetoothDeviceListChanged(List<BluetoothDevice> deviceList) {
        //Add your logic here to update UI
        }
    }