其他分享
首页 > 其他分享> > Android 1.6中的Android LruCache

Android 1.6中的Android LruCache

作者:互联网

我需要在Android 1.6中使用LruCache(来自Android 3.1的api)

我使用支持LruCache的Android支持库v4(符合本手册http://developer.android.com/training/displaying-bitmaps/cache-bitmap.html#memory-cache)
但问题是我一直得到NoClassDefNotFoundError.我在我的项目中包含support.v4库(在其他活动中我使用ViewPager …)

任何人都知道为什么会这样?

解决方法:

你需要使用android.support.v4.util.LruCache< K,V>不是android.util.LruCache< K,V>因为第二个只存在于具有API> = 12的Android上…检查是否从支持库导入了一个而不是从SDK …

标签:android,memorycache
来源: https://codeday.me/bug/20190723/1512992.html