我implements library然后使用里面的fuction
//宣告ArrayList mDevices1
public ArrayList<BluetoothDevice> mDevices1 = new ArrayList<BluetoothDevice>();
//使用library function,还是这里会做在library package里面,这样让我取不到?
@Override
public void bluetoothDeviceListBeenRenewed(BluetoothList bluetoothList) {
//mDevices1 = bluetoothList;
mDevices1.addAll(bluetoothList);
// 这里打印的出来mDevices01,而且bluelist确定有东西也有打印出来
Log.e("mDevices1", String.valueOf(mLeDevices1));
}
我只有在这个function印得出来mDevices1,
不过在 其他地方 要拿来用,
就拿不到mDevices1就为空的阵列
存不回去上面宣告的mDevices1那
我想问看看有什么关键字!
现在完全没有方向...