我有一个mutableList
。
var newList: MutableList<String> = mutableListOf()
如何通过意图传递
newList
?我尝试了这个,但是没有用。
mIntent.putParcelableArrayListExtra("mFilePath", ArrayList(newList))
错误
最佳答案
能够解决它。
mIntent.putStringArrayListExtra("mFilePath", ArrayList(newList))
关于java - 通过意图传递mutableList,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56862775/