【问题标题】:Android AsyncTask using Wallpaper ManagerAndroid AsyncTask 使用墙纸管理器
【发布时间】:2012-08-18 06:32:52
【问题描述】:

我的壁纸管理器使用异步任务设置为壁纸。但是在从非异步更改为 AsyncTask 后,我收到错误“SetWallpaperTask 类型的方法 getBaseContext() 未定义”请更正我的代码。非常感谢。

旧的非异步任务

public void SetWallpaper(String image_url)
        {   
        URL myFileUrl = null;
            try
        {   
                myFileUrl = new URL(image_url); 
        }
            catch (MalformedURLException e)
            {      
                e.printStackTrace();  
            }   
            Bitmap bmImg = null;
            try {  
                HttpURLConnection conn = (HttpURLConnection) myFileUrl.openConnection();   
                conn.setDoInput(true);   
                conn.connect();     
                //int length = conn.getContentLength(); 
            InputStream is = conn.getInputStream();
            bmImg = BitmapFactory.decodeStream(is); 
            }
                catch (IOException e)
                {       
                    e.printStackTrace();  
                }   
        try {       

            String path = myFileUrl.getPath();
            String idStr = path.substring(path.lastIndexOf('/') + 1);
            File filepath = Environment.getExternalStorageDirectory();
            File dir = new File (filepath.getAbsolutePath() + "/Wallpaper/");
                dir.mkdirs();
                String fileName = idStr;
                File file = new File(dir, fileName);
                FileOutputStream fos = new FileOutputStream(file);

                bmImg.compress(CompressFormat.JPEG, 75, fos);   
                fos.flush();    
                fos.close();       

                WallpaperManager wpm = WallpaperManager.getInstance(getBaseContext());
                wpm.setBitmap(bmImg);

        }
        catch (Exception e){


            e.printStackTrace();  
        }
        }

新建异步任务

public class SetWallpaperTask extends AsyncTask<String , String , String>
{
    private Context context;
    private ProgressDialog pDialog;
    String image_url;
    URL myFileUrl;
    String myFileUrl1;
    Bitmap bmImg = null;

    public SetWallpaperTask(Context context) {
        this.context = context;
    }

    @Override
    protected void onPreExecute() {
        // TODO Auto-generated method stub

        super.onPreExecute();

        pDialog = new ProgressDialog(context);
        pDialog.setMessage("Downloading Image ...");
        pDialog.setIndeterminate(false);
        pDialog.setCancelable(false);
        pDialog.show();

    }

    @Override
    protected String doInBackground(String... args) {
        // TODO Auto-generated method stub

        try {  

            myFileUrl = new URL(args[0]);
            //myFileUrl1 = args[0];

            HttpURLConnection conn = (HttpURLConnection) myFileUrl.openConnection();   
            conn.setDoInput(true);   
            conn.connect();     
            InputStream is = conn.getInputStream();
            bmImg = BitmapFactory.decodeStream(is); 
        }
        catch (IOException e)
        {       
            e.printStackTrace();  
        }
        try {       

            String path = myFileUrl.getPath();
            String idStr = path.substring(path.lastIndexOf('/') + 1);
        File filepath = Environment.getExternalStorageDirectory();
        File dir = new File (filepath.getAbsolutePath() + "/Wallpaper/");
            dir.mkdirs();
            String fileName = idStr;
            File file = new File(dir, fileName);
            FileOutputStream fos = new FileOutputStream(file);
            bmImg.compress(CompressFormat.JPEG, 75, fos);   
            fos.flush();    
            fos.close();    

        }
        catch (Exception e)
                {
                    e.printStackTrace();  
                }
        return null;   
    }


    @Override
    protected void onPostExecute(String args) {
        // TODO Auto-generated method stub
        WallpaperManager wpm = WallpaperManager.getInstance(context()); // --The method context() is undefined for the type SetWallpaperTask
        wpm.setBitmap(bmImg);
        pDialog.dismiss();

    }


}

【问题讨论】:

    标签: android asynchronous android-asynctask imageview wallpaper


    【解决方案1】:

    这是因为您无法使用 getBaseContext() 在 AsyncTask 中获取上下文。

    我看到您已经在构造函数中接收到一个 Context 并将其存储在类变量 context 中。所以你可以简单地改变

        WallpaperManager wpm = WallpaperManager.getInstance(getBaseContext()); 
    

        WallpaperManager wpm = WallpaperManager.getInstance(context);
    

    【讨论】:

    • 我仍然收到相同的错误“SetWallpaperTask 类型的方法 context() 未定义”我是否遗漏了什么?编辑了我的代码
    • 从 context() 中删除括号。让它只是上下文。
    【解决方案2】:

    将您的活动上下文传递给此AsynTask,并在您的onPostExecute() 中使用该上下文。

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2019-01-31
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多