任何人都可以向我提供一些关于如何从网络服务器保存图像并将其设置为墙纸的想法/指导吗?我正在开发一个需要这样做的Android应用程序,我是android的新手。非常感谢。
我曾尝试编写自己的代码,但它不起作用,因为我无法在下载后找到我的图像,但壁纸已更改为下载的图片。这是我现有的代码。
Bitmap bmImg;
void downloadFile(String fileUrl) {
URL myFileUrl = null;
try {
myFileUrl = new URL(fileUrl);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
HttpURLConnection conn = (HttpURLConnection) myFileUrl
.openConnection();
conn.setDoInput(true);
conn.connect();
int length = conn.getContentLength();
InputStream is = conn.getInputStream();
bmImg = BitmapFactory.decodeStream(is);
// this.imView.setImageBitmap(bmImg);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
try {
String filepath=Environment.getExternalStorageDirectory().getAbsolutePath();
FileOutputStream fos = new FileOutputStream(filepath + "/" + "output.jpg");
bmImg.compress(CompressFormat.JPEG, 75, fos);
fos.flush();
fos.close();
Context context = this.getBaseContext();
context.setWallpaper(bmImg);
} catch (Exception e) {
//Log.e("MyLog", e.toString());
TextView tv = (TextView) findViewById(R.id.txt_name);
tv.setText(e.toString());
}
}
答案 0 :(得分:2)
我曾尝试编写自己的代码但是它 不起作用,因为我找不到我的图像 下载后。这是我现有的 代码。
您的代码会将图片保存在手机的data/data/<your_app_package_name>
文件夹中。然后,您可以使用WallpaperManager instance
或执行context.setWallpaper(bitmap)
(不推荐使用)将位图设置为墙纸。