在将 List 转换为 long 类型的数组并尝试在 List 类中检索后,我正在发送 ItemId,但它的值为 null。在解码时,我可以看到正在发送值,但 getLongArrayExtra 不起作用..
List<Long> sList = new ArrayList<Long>();
sList.add(1);
sList.add(2);
Long[] ItemId = sList.toArray(new Long[sList.size()]);
Intent iIntent = new Intent(this, List.class);
iIntent.putExtra("ITEM_ID", ItemId);
startActivity(iIntent);
final Intent intent = getIntent();
long[]ItemIdList = intent.getLongArrayExtra("ITEM_ID");