我正在使用毕加索来展示自己的肖像,而当我们改变自己的照片时,我想要清除这个用户的缓存(或者所有用户的肖像缓存),这里是我的代码,它不起作用,任何人都可以帮助我?
LruCache lruCache = new LruCache(context); lruCache.clear(); Picasso picasso = new Picasso.Builder(context).memoryCache(lruCache).build(); picasso.load(portraitUrl).resize(50,50).centerCrop().error(R.drawable.user_portrait).into(portaitView);