赞
踩
我是新来的android和我正在与蓝牙功能的应用程序。我能够设置蓝牙适配器,获取我自己的设备信息,但我无法使用startdiscovery发现蓝牙设备。当我开始扫描时,它什么都不做。Android上的蓝牙:StartDiscovery无法正常工作。无法扫描设备
我使用的是onclicklistner开始扫描:
bt.setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
if (!(bluetooth.isEnabled())) {
status = "Bluetooth is not Enabled.";
Toast.makeText(AddUser.this, status, Toast.LENGTH_LONG).show();
Intent enableBtIntent = new Intent(BluetoothAdapter.ACTION_REQUEST_ENABLE);
startActivityForResult(enableBtIntent, 1);
}
else
{
scand();
}
}
这是我刚才的“公共无效的onCreate”功能后,把onActivityResult功能:
protected void onActivityResult(int requestCode, int resultCode, Intent intent) {
System.out.println(resultCode);
if (resultCode == RESULT_CANCELED) {
status="Error Enabling bluetooth";
Toast.makeText(AddUser.this, status, Toast.LENGTH_LONG).show();
} else {
scand();
}
}
这是我的scand功能,其中我是callng startdiscovery:
private void scand()
{
bluetooth.startDiscovery();
Log.d("itmes", ""+items.size());
item1 = new String[items.size()];
item1 = items.toArray(item1);
AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setTitle("Choose a device");
builder.setItems(item1, new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int item) {
Toast.makeText(getApplicationContext(), item1[item], Toast.LENGTH_SHORT).show();
}
});
AlertDialog alert = builder.create();
alert.show();
}
这是broadca stReceiver:
private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if (BluetoothDevice.ACTION_FOUND.equals(action))
{
Log.e("br", "--- device found ---");
BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
items.add(device.getName());
}
}
};
在为广播接收器上面的代码中,我试图把发现的设备名称字符串中的ArrayList的“项目”。
我的OnCreate中functon内注册的BroadcastReceiver这样的:
filter = new IntentFilter(BluetoothDevice.ACTION_FOUND);
registerReceiver(mReceiver, filter);
我已经设置在androidmanifest文件蓝牙权限。在上面的scand函数中,假设显示已发现设备的列表,但它只显示一个空标题的对话框。请告诉我如何正确使用startdiscovery和broadcastreceiver在alertdialog中显示结果。
+0
是你试试蓝牙设备在发现模式下扫描? –
2013-04-24 06:00:38
+0
是的,它们是可以发现的。 –
2013-04-24 06:04:45
+0
是使用startdiscovery和broadcastreceiver的正确方法吗? –
2013-04-24 06:08:04
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。