如何在Android上向String数组添加元素

时间:2016-10-01 22:01:51

标签: java android

我正在尝试使用可用的蓝牙设备制作listview。我试图使用arrayAdapter。我已经创建了字符串数组,但我无法使用我的代码向该数组添加任何内容:

String[] values;

    private final BroadcastReceiver mReceiver = new BroadcastReceiver() {
        public void onReceive(Context context, Intent intent) {
            String action = intent.getAction();
            // When discovery finds a device
            if (BluetoothDevice.ACTION_FOUND.equals(action)) {
                // Get the BluetoothDevice object from the Intent
                BluetoothDevice device = intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE);
                // Add the name and address to an array adapter to show in a ListView
                values.add(device.getName() + "\n" + device.getAddress());
            }
        }
    }; 

Android工作室表示无法解决方法add并对其进行标记。

整个代码:

enter image description here

如何解决此问题并使其有效?

感谢。

2 个答案:

答案 0 :(得分:0)

您可以使用List代替数组,如下所示:

声明:

List<String> values = new ArrayList<String>();

添加:

values.add(device.getName() + "\n" + device.getAddress());

答案 1 :(得分:0)

基本上Array是一个容器对象,它包含固定数量的单个类型的值,因此如果它初始化为特定值,则无法添加或删除它。这就是为什么你不能称这种方法。

您可以做的是使用专门设计用于执行此操作的列表:

List<String> values = new ArrayList<String>();
values.add(device.getName() + "\n" + device.getAddress());