就是我的Arraylist是从一个library一直传过来我的APP这,
然后要放入Recyclerview中,
可是不知道怎么放RecyclerViewAdapter.notifyDataSetChanged();,
我有把它放在一直更新资料的那个method不过那里侦测不到notifyDataSetChanged,
因为资料是在library更动的,
无法用这notifyDataSetChanged funtion
Code大概是这样:
@Override
public void bluetoothDeviceListRenewed(BluetoothList bluetoothList) {
// mdevice跟bluethoothlist是arraylist
mDevices = bluetoothList;
mRecyclerViewAdapter.notifyDataSetChanged();
}
这样会出现notifyDataSetChanged nullexception
想请教看看这个如何解呢!?