我有一个我创建的对象列表。我需要将它传递给另一个活动。它无法正常工作
List<Dog> myDogs = ...
intent.putExtra(ALL_MY_DOGS,myDogs);
我收到编译错误:
The method putExtra(String, boolean) in the type Intent is not applicable for the
arguments (String, List<Dog>)
答案 0 :(得分:0)
我发现了错误。我传递的是列表而不是ArrayList。