向Dialog中加入String[]数组

来源:互联网 发布:idea java log4j使用 编辑:程序博客网 时间:2024/06/06 03:44
new AlertDialog.Builder(this)
                    .setTitle(search_fail_title + "," + found_2_fail + found_num)
                    .setItems(String[],new DialogInterface.OnClickListener() {
                                public void onClick(DialogInterface dialog, int which) {
                                    dialog.dismiss();
                                }
                            })
                    .setNegativeButton("Again", null)

                    .show();


Object[] lstDevice = btAdapter.getBondedDevices().toArray();//从蓝牙btAdapter中获取已经配对的列表
            for (int i = 0; i < lstDevice.length; i++) {
                BluetoothDevice device=(BluetoothDevice)lstDevice[i];
                String str = "要显示的元素|" + device.getName() + "|" + device.getAddress()+",";
                lstDevices.add(str); //Array可以添加str
            }
            String[] = lstDevices.toString().split(",");


registerMeasReceiver:

BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                    /***!!!
                     * 获取设备名称和mac地址*/
                    if (device.getBondState() == BluetoothDevice.BOND_NONE) {
                        String str = "未配对元素|" + device.getName() + "|" + device.getAddress()+",";
                        lstDevices.add(str);
                    }

0 0
原创粉丝点击