我有一个我创建的对象列表。我需要将它传递给另一个活动。它不工作
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>)
我有一个我创建的对象列表。我需要将它传递给另一个活动。它不工作
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>)