Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个哈希映射的数组列表,在这个哈希映射的数组列表中,我在通过从 Web 服务下载数据创建活动时添加项目。我将它传递给 listview 的适配器,并希望在对活动的多次访问中保存并恢复它,以便每次恢复活动时它都不会下载数据。我有 onsavedInstanceState 和 onRestoreInstanceState 的想法,但我不知道如何保存和存储 hashmap 的数组列表。
任何人都可以提供帮助。提前谢谢了......
创建一个 Constant.java 文件并在此文件中声明 hashmap 数组列表,请参阅下面的代码以获取更多信息,它将解决您的问题。
public class Constants { public static ArrayList<HashMap<String, String>> mResults = new ArrayList<HashMap<String, String>>(); }