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.
我已经在一个应用程序中实现了来自johan的 PullToRefreshListView ,该应用程序在除新的 Jelly Bean 之外的所有其他版本的 Android 上都运行良好。有谁知道这可能是什么原因,或者是否有解决这个问题的方法?我已经在三星 Galaxy S3 的 android 版本 4.1.1 上对此进行了测试。
此外,是否可以在应用程序中设置过滤器,以便它可以识别设备是否运行 android 版本 > 4.0。这可能是一个临时解决方案。
谢谢拉贾特
原来这是果冻豆中的一个实际问题。解决方案在作者的页面中:
您需要在 PullToRefreshListView 类中更改以下几行:
@Override protected void onAttachedToWindow() { super.onAttachedToWindow(); setSelection(1); }
更多在这里
一切顺利
您提出的临时解决方案在此博客文章中有详细说明,称为延迟加载。