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.
我的应用程序中有一个列表视图,当向上和向下滚动时,我在日志中看到垃圾收集器正在工作很多 - 我如何找出哪些操作导致它工作,以及我该怎么做才能躲开它?这样我的列表滚动更顺畅。
从您的列表视图 xml 中删除(如果您不使用它)android:cacheColorHint;
android:cacheColorHint
如果它没有帮助将此行添加到您的 xml 以删除列表视图的缓存:
android:scrollingCache="false" android:animationCache="false"
希望能帮助到你 *