現在、次の方法で画像をロードしています。
public static Drawable loadCachedImage(String strUrl) {
try {
URL url = new URL(strUrl);
URLConnection connection = url.openConnection();
connection.setUseCaches(true);
Object response = connection.getContent();
if (response instanceof Bitmap) {
Bitmap bitmap = (Bitmap)response;
return new BitmapDrawable(bitmap);
} else {
InputStream is = (InputStream) connection.getContent();
return Drawable.createFromStream(is, "src name");
}
} catch (Exception e) {}
return null;
}
私の知る限り、Androidのデフォルトキャッシュを使用しています。したがって、特定のアプリ情報を保存する時間 (または保存される最大データ サイズ) を知りたいと思います。設定構成ですか?
前もって感謝します!