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.
我已经完成了一个 android 应用程序,它从互联网中检索数据,对其进行格式化并将其显示在自定义行中。但是性能很慢。那么,是否有任何通用指南或清单来提高 android 应用程序的性能。
为什么不通读 android 开发者文档。有很多方便的提示和技巧可用于优化您的应用程序。
这里有关于提高性能的一般指南
当您从 Internet 检索数据时,运行后台线程来检索数据非常重要。这将阻止您的界面在接收数据时“挂起”并变得无响应。这里和这里有两篇有用的文章
采取措施优化您的用户界面也可能是一个好主意。文章在这里