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.
使用 droid-fu,如何让 WebImageView 重新下载图片并显示?想想每 5 分钟刷新一次网络摄像头......
我尝试了一个按钮调用如下方法:
public void refresh() { webcam1.reset(); webcam1.setImageUrl(webcam1url); webcam1.loadImage(); }
其中 webcam1 是我的 WebImageView,但它永远不会重新加载,我只是永远用加载轮代替新图像。
解决方案是在 WebImageView 中实现 clearCache() 方法并刷新整个活动:
public void refreshImages() { webcam1.clearCache(); startActivity(getIntent()); finish(); overridePendingTransition(0, 0); }