3

谁能给我一些关于如何从网络服务器保存图像并将其设置为墙纸的想法/指导?我正在开发一个需要这样做的 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());
    }

}
4

1 回答 1

2

我曾尝试编写自己的代码,但它不起作用,因为我在下载后找不到我的图像。这是我现有的代码。

您的代码会将图像保存在data/data/<your_app_package_name>手机的文件夹中。然后,您可以使用 aWallpaperManager instance或 do a context.setWallpaper(bitmap)(已弃用)将位图设置为墙纸。

于 2010-01-20T04:37:21.677 回答