android蓝牙聊天应用程序

时间:2012-10-24 06:41:43

标签: android

我正在构建一个Android蓝牙聊天应用程序并面临一些问题。我的问题是:我无法检测范围内的可用蓝牙设备而无法在列表中显示。作为我刚接触到的android编程能够发现问题。请帮帮我。

我的代码是:

public class BluetoothSearchActivity extends Activity {

    ArrayAdapter<String> btArrayAdapter;
    BluetoothAdapter mBluetoothAdapter;
    TextView stateBluetooth;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        ImageView BluetoothSearchImageView=new ImageView(this);
        BluetoothSearchImageView.setImageResource(R.drawable.inner1);

        setContentView(BluetoothSearchImageView);
        setContentView(R.layout.activity_bluetooth_search);

        mBluetoothAdapter=BluetoothAdapter.getDefaultAdapter();

        ListView listDevicesFound=(ListView) findViewById(R.id.myList);

        btArrayAdapter=new ArrayAdapter<String> (BluetoothSearchActivity.this,android.R.layout.simple_list_item_1);

        listDevicesFound.setAdapter(btArrayAdapter);

        registerReceiver(ActionFoundReceiver,new IntentFilter(BluetoothDevice.ACTION_FOUND));

        btArrayAdapter.clear();
        mBluetoothAdapter.startDiscovery();

    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        unregisterReceiver(ActionFoundReceiver);
    }

    private final BroadcastReceiver ActionFoundReceiver=new BroadcastReceiver() {

        @Override
        public void onReceive(Context context, Intent intent) {
            // TODO Auto-generated method stub
            String action=intent.getAction();
            if(BluetoothDevice.ACTION_FOUND.equals(action)) {
                BluetoothDevice device=intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                btArrayAdapter.add(device.getName()+"\n"+device.getAddress());
                btArrayAdapter.notifyDataSetChanged();
            }
        }   
    };

1 个答案:

答案 0 :(得分:0)

您是否将其他设备设置为可发现?大多数智能手机默认情况下对配对设备不可见,您需要启用可见性才能看到它。

我看到您使用API​​参考中的示例,因此它应该可以工作。

确保您拥有:

<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.BLUETOOTH_ADMIN" />

在AndroidManifest.xml文件中。

除此之外,您的对象有一些奇怪的命名约定。 ActionFoundReceiver应该是actionFoundReceiver(它的一个对象不是一个类),但没什么大不了的。

如果您收到任何类型的错误消息,请同时发布。

编辑:你可以在Log.d(标签,字符串)中写出设备名称和地址,这样你就可以在logcat调试中读出它,消除了显示列表的问题。

编辑:为Log.d添加了代码

import android.util.Log;

//to use Log.d(String, String)
Log.d("someTag", "your text here");

您可以使用Log.d打印调试信息,以帮助您了解代码是否正确执行。我会Log.d("tag", device.getName()+" "+device.getAddress());看看你是否听到听众的任何回应。并且可以消除尝试将其列入列表等问题。

- ThomasFlølo