English 中文(简体)
离因特网相隔的图像?
原标题:Caching images fetched from the internet?
  • 时间:2011-07-22 16:22:29
  •  标签:
  • android

I want to cache the images i fetch over the internet. So that each time the images are swiped in the gallery, they wont be fetched each time. If some one could tell me how i could do that with this code it would be greatly appreciated.

 if(Build.VERSION.SDK_INT >= 11){
    StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
}


 my.setOnClickListener(new View.OnClickListener() {

    @Override
    public void onClick(View v) {
        startActivity(n);

    }
});
gameNews.setOnClickListener(new View.OnClickListener() {

    @Override
    public void onClick(View v) {

    }
}); 

//Executing AsyncTask in background thread to get images.
MyTask myTask = new MyTask();

myTask.execute();

}

图像方法:

//Method to get images from text documents that will by updated every month.

public void getImages() throws IOException{


    DefaultHttpClient httpclient = new DefaultHttpClient();

    HttpGet httppost = new HttpGet("https://sites.google.com/site/theitrangers/images/webImages.txt");
    HttpResponse response;

        response = httpclient.execute(httppost);


            HttpEntity ht = response.getEntity();

            BufferedHttpEntity buf = new BufferedHttpEntity(ht);

            InputStream is = buf.getContent();


            BufferedReader r = new BufferedReader(new InputStreamReader(is));

            StringBuilder total = new StringBuilder();
            String line;
            while ((line = r.readLine()) != null) {
                total.append(line + "
");

              imageUrl = total.toString();
              Log.v("getImage1", "Retreived image");
            }
     }



            public void getImage2() throws IOException{

                DefaultHttpClient httpclient = new DefaultHttpClient();

                HttpGet httppost = new HttpGet("https://sites.google.com/site/theitrangers/images/webImage2.txt");
                HttpResponse response;


                    response = httpclient.execute(httppost);


                        HttpEntity ht = response.getEntity();

                        BufferedHttpEntity buf = new BufferedHttpEntity(ht);

                        InputStream is = buf.getContent();


                        BufferedReader r = new BufferedReader(new InputStreamReader(is));

                        StringBuilder total = new StringBuilder();
                        String line;
                        while ((line = r.readLine()) != null) {
                            total.append(line + "
");

                          imageUrl2 = total.toString();
                          Log.v("getImage2", "Retreived image");
                        }
                }



                        public void getImage3() throws IOException{

                            DefaultHttpClient httpclient = new DefaultHttpClient();

                            HttpGet httppost = new HttpGet("https://sites.google.com/site/theitrangers/images/webimage3.txt");
                            HttpResponse response;


                                response = httpclient.execute(httppost);


                                    HttpEntity ht = response.getEntity();

                                    BufferedHttpEntity buf = new BufferedHttpEntity(ht);

                                    InputStream is = buf.getContent();


                                     BufferedReader r = new BufferedReader(new InputStreamReader(is));

                                    StringBuilder total = new StringBuilder();
                                    String line;
                                    while ((line = r.readLine()) != null) {
                                        total.append(line + "
");

                                      imageUrl3 = total.toString();
                                      Log.v("getImage3", "Retreived image");
                                    }

                        }

                        public void getImage4() throws IOException{

                            DefaultHttpClient httpclient = new DefaultHttpClient();

                            HttpGet httppost = new HttpGet("https://sites.google.com/site/theitrangers/images/webImage4.txt");
                            HttpResponse response;


                                response = httpclient.execute(httppost);


                                    HttpEntity ht = response.getEntity();

                                    BufferedHttpEntity buf = new BufferedHttpEntity(ht);

                                    InputStream is = buf.getContent();


                                    BufferedReader r = new BufferedReader(new InputStreamReader(is));

                                    StringBuilder total = new StringBuilder();
                                    String line;
                                    while ((line = r.readLine()) != null) {
                                        total.append(line + "
");

                                      imageUrl4 = total.toString();


                            }
}

图像Adapter类:

                    //ImageAdapter that gets the URL of the images and put them in a format to be set to gallery
        public class ImageAdapter extends BaseAdapter {
            /** The parent context */
            private Context myContext;public ImageAdapter() {
                // TODO Auto-generated constructor stub
            }
            /** URL-Strings to some remote images. */

            public String[] myRemoteImages = {imageUrl,imageUrl2,imageUrl3,imageUrl4};






            /** Simple Constructor saving the  parent  context. */
            public ImageAdapter(Context c) { this.myContext = c; }





            /** Returns the amount of images we have defined. */
            public int getCount() { return this.myRemoteImages.length; }

            /* Use the array-Positions as unique IDs */
            public Object getItem(int position) { return position; }
            public long getItemId(int position) { return position; }

            /** Returns a new ImageView to
            * be displayed, depending on
            * the position passed. */
            public View getView(int position, View convertView, ViewGroup parent) {
            ImageView i = new ImageView(this.myContext);

            try {

                            URL aURL = new URL(myRemoteImages[position]);
                            URLConnection conn = aURL.openConnection();

                            conn.connect();

                            InputStream is = conn.getInputStream();  
                            /* Buffered is always good for a performance plus. */
                            BufferedInputStream bis = new BufferedInputStream(is);
                            /* Decode url-data to a bitmap. */

                            Bitmap bm = BitmapFactory.decodeStream(bis);
                            bis.close();
                            is.close();
                            Log.v(imageUrl, "Retrieving image");

                            /* Apply the Bitmap to the ImageView that will be returned. */
                            i.setImageBitmap(bm);
                    } catch (IOException e) {

                            Log.e("DEBUGTAG", "Remtoe Image Exception", e);
                    }

            /* Image should be scaled as width/height are set. */
            i.setScaleType(ImageView.ScaleType.FIT_CENTER);
            /* Set the Width/Height of the ImageView. */
            i.setLayoutParams(new Gallery.LayoutParams(150, 150));
            return i;
            }

            /** Returns the size (0.0f to 1.0f) of the views
            * depending on the  offset  to the center. */
            public float getScale(boolean focused, int offset) {
            /* Formula: 1 / (2 ^ offset) */
            return Math.max(0, 1.0f / (float)Math.pow(2, Math.abs(offset)));
            }
            } 





        //the important AsyncTask method. running the background thread to get the images and set them to the gallery.
            private class MyTask extends AsyncTask<Void, Void, Void>{


            @Override
            protected Void doInBackground(Void... arg0) {try {
                        getImages();
                        Log.v("MyTask", "Image 1 retreived");
                        getImage2();
                        Log.v("MyTask", "Image 2 retreived");
                        getImage3();
                        Log.v("MyTask", "Image 3 retreived");
                        getImage4();
                        Log.v("MyTask", "Image 4 retreived");
                    } catch (IOException e) {
                        Log.e("MainMenu retreive image", "Image Retreival failed");
                        e.printStackTrace();
                    }
                return null;
            }
            @Override

            protected void onPostExecute(Void notUsed){
                ((Gallery) findViewById(R.id.gallery))
                      .setAdapter(new ImageAdapter(MainMenu.this));


            }

       }
最佳回答

这样做有两种办法,假设尿的档案名称是独一无二的,你可以将其写给纸张或内部储存。 例如:

File cacheDir = new File("my-cache-dir");
File[] fileList = cacheDir.listFiles();
int index = linearSearch.(fileList, uri.getFileName());

if(index != -1){
 // load from file
} else {
 // load from web
}

还有其他几种方法可以做到这一点,如数据库或统一档案。 诚然,你们必须每刻创造同样的切身之地。

问题回答

暂无回答




相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签