我正在嘗試使用可用的藍牙設備進行列表視圖。我試圖使用arrayAdapter。我已經做字符串數組,但這個數組我的代碼,我不能添加任何東西:如何在Android上向字符串數組添加元素
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
和標記它。
整個代碼:
如何解決這個問題,使這項工作?
謝謝。
http://stackoverflow.com/questions/2843366/how-to-add-new-elements-to-數組 – CommonsWare