草庐IT

android - 在 GridView 中加载异步图像 (Android)

coder 2023-12-15 原文

我有一个带有图片/文本的 GridView,从不同的服务器加载(我只知道 URL)。 我试图根据 the tutorial of ryac 修改我的代码.

在我的 Activity 文件中,我将 GAdapter 设置为我的 GridView,如下所示:

GridView mGridMain = (GridView)findViewById(R.id.gvMain);
mGridMain.setAdapter(new GAdapter(this, listAppInfo));

我已经修改了自己的适配器并尝试适配它:

public class GAdapter extends BaseAdapter {

 private Context mContext;
 private List<SiteStaff> mListAppInfo;
 private HashMap<Integer, ImageView> views;

 /**
  * @param context
  * @param list
  */
 public GAdapter(Context context, List<SiteStaff> list) {
  mContext = context;
  mListAppInfo = list;  
 }

 @Override
 public int getCount() {
  return mListAppInfo.size();
 }

 @Override
 public Object getItem(int position) {
  return mListAppInfo.get(position);
 }

 @Override
 public long getItemId(int position) {
  return position;
 }

 @Override
 public View getView(int position, View convertView, ViewGroup parent) {

  SiteStaff entry = mListAppInfo.get(position);

  if(convertView == null) {
   LayoutInflater inflater = LayoutInflater.from(mContext);
   convertView = inflater.inflate(R.layout.list_g, null);
  }

  ImageView v;

  // get the ImageView for this position in the GridView..
  v = (ImageView)convertView.findViewById(R.id.ivIcon);

  //set default image
  v.setImageResource(android.R.drawable.ic_menu_gallery);

  TextView tvName = (TextView)convertView.findViewById(R.id.tvName);
  tvName.setText(entry.getName());


  Bundle b = new Bundle ();
  b.putString("file", "http://www.test.com/mypict.jpg");
  b.putInt("pos", position);

  // this executes a new thread, passing along the file
  // to load and the position via the Bundle..
  new LoadImage().execute(b);

  // puts this new ImageView and position in the HashMap.
  views.put(position, v);


  // return the view to the GridView..
  // at this point, the ImageView is only displaying the
  // default icon..
  return v;

 }




 // this is the class that handles the loading of images from the cloud
 // inside another thread, separate from the main UI thread..
 private class LoadImage extends AsyncTask<Bundle, Void, Bundle> {

  @Override
  protected Bundle doInBackground(Bundle... b) {

   // get the file that was passed from the bundle..
   String file = b[0].getString("file");

   URL UrlImage;
   Bitmap bm=null;
   try {
    UrlImage = new URL (file);
    HttpURLConnection connection;
    connection = (HttpURLConnection) UrlImage.openConnection(); 
    bm= BitmapFactory.decodeStream(connection.getInputStream());

   } catch (MalformedURLException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   } catch (IOException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
   }   


   // now that we have the bitmap (bm), we'll
   // create another bundle to pass to 'onPostExecute'.
   // this is the method that is called at the end of 
   // our task. like a callback function..
   // this time, we're not passing the filename to this
   // method, but the actual bitmap, not forgetting to
   // pass the same position along..

   Bundle bundle = new Bundle();
   bundle.putParcelable("bm", bm);
   bundle.putInt("pos", b[0].getInt("pos"));
   bundle.putString("file", file); // this is only used for testing..

   return bundle;
  }

  @Override
  protected void onPostExecute(Bundle result) {
   super.onPostExecute(result);

   // just a test to make sure that the position and
   // file name are matching before and after the
   // image has loaded..
   Log.d("test", "*after: " + result.getInt("pos") + " | " + result.getString("file"));

   // here's where the photo gets put into the
   // appropriate ImageView. we're retrieving the
   // ImageView from the HashMap according to
   // the position..
   ImageView view = views.get(result.getInt("pos"));

   // then we set the bitmap into that view. and that's it.
   view.setImageBitmap((Bitmap) result.getParcelable("bm"));
  }

 }

}

但是显示如下错误:

11-16 06:16:08.285: E/AndroidRuntime(517): FATAL EXCEPTION: main
11-16 06:16:08.285: E/AndroidRuntime(517): java.lang.NullPointerException
11-16 06:16:08.285: E/AndroidRuntime(517):  at common.adapter.GAdapter.getView(GAdapter.java:139)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.widget.AbsListView.obtainView(AbsListView.java:1315)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.widget.GridView.onMeasure(GridView.java:932)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.view.View.measure(View.java:8171)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:3132)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.widget.LinearLayout.measureChildBeforeLayout(LinearLayout.java:1012)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.widget.LinearLayout.measureVertical(LinearLayout.java:381)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.widget.LinearLayout.onMeasure(LinearLayout.java:304)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.view.View.measure(View.java:8171)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.view.ViewGroup.measureChildWithMargins(ViewGroup.java:3132)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.widget.FrameLayout.onMeasure(FrameLayout.java:245)
11-16 06:16:08.285: E/AndroidRuntime(517):  at android.view.View.measure(View.java:8171)

到目前为止,我从未在 Android 中使用过线程。如果有人能帮助我,我将不胜感激。

最佳答案

我在你做的最后输入了 getView()

views.put(position, v);

但它views 从未初始化。这就是您得到 java.lang.NullPointerException

的原因

为避免这种情况,请在您的 GAdapter 构造函数中初始化 HashMap 对象

public GAdapter(Context context, List<SiteStaff> list) {
  mContext = context;
  mListAppInfo = list;  
  views = new HashMap<Integer, ImageView>();

 }

如果您检查您在问题中引用的示例,您会发现

public ImageAdapter (Context c, String f, ArrayList<HashMap<String, Object>> p) {
        ...
        views = new HashMap<Integer, ImageView>();
    }

关于android - 在 GridView 中加载异步图像 (Android),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8147958/

有关android - 在 GridView 中加载异步图像 (Android)的更多相关文章

  1. ruby-on-rails - 如何在 ruby​​ 中使用两个参数异步运行 exe? - 2

    exe应该在我打开页面时运行。异步进程需要运行。有什么方法可以在ruby​​中使用两个参数异步运行exe吗?我已经尝试过ruby​​命令-system()、exec()但它正在等待过程完成。我需要用参数启动exe,无需等待进程完成是否有任何ruby​​gems会支持我的问题? 最佳答案 您可以使用Process.spawn和Process.wait2:pid=Process.spawn'your.exe','--option'#Later...pid,status=Process.wait2pid您的程序将作为解释器的子进程执行。除

  2. ruby-on-rails - 添加回形针新样式不影响旧上传的图像 - 2

    我有带有Logo图像的公司模型has_attached_file:logo我用他们的Logo创建了许多公司。现在,我需要添加新样式has_attached_file:logo,:styles=>{:small=>"30x15>",:medium=>"155x85>"}我是否应该重新上传所有旧数据以重新生成新样式?我不这么认为……或者有什么rake任务可以重新生成样式吗? 最佳答案 参见Thumbnail-Generation.如果rake任务不适合你,你应该能够在控制台中使用一个片段来调用重新处理!关于相关公司

  3. ruby-on-rails - 在 Ruby (on Rails) 中使用 imgur API 获取图像 - 2

    我正在尝试使用Ruby2.0.0和Rails4.0.0提供的API从imgur中提取图像。我已尝试按照Ruby2.0.0文档中列出的各种方式构建http请求,但均无济于事。代码如下:require'net/http'require'net/https'defimgurheaders={"Authorization"=>"Client-ID"+my_client_id}path="/3/gallery/image/#{img_id}.json"uri=URI("https://api.imgur.com"+path)request,data=Net::HTTP::Get.new(path

  4. python ffmpeg 使用 pyav 转换 一组图像 到 视频 - 2

    2022/8/4更新支持加入水印水印必须包含透明图像,并且水印图像大小要等于原图像的大小pythonconvert_image_to_video.py-f30-mwatermark.pngim_dirout.mkv2022/6/21更新让命令行参数更加易用新的命令行使用方法pythonconvert_image_to_video.py-f30im_dirout.mkvFFMPEG命令行转换一组JPG图像到视频时,是将这组图像视为MJPG流。我需要转换一组PNG图像到视频,FFMPEG就不认了。pyav内置了ffmpeg库,不需要系统带有ffmpeg工具因此我使用ffmpeg的python包装p

  5. 安卓apk修改(Android反编译apk) - 2

    最近因为项目需要,需要将Android手机系统自带的某个系统软件反编译并更改里面某个资源,并重新打包,签名生成新的自定义的apk,下面我来介绍一下我的实现过程。APK修改,分为以下几步:反编译解包,修改,重打包,修改签名等步骤。安卓apk修改准备工作1.系统配置好JavaJDK环境变量2.需要root权限的手机(针对系统自带apk,其他软件免root)3.Auto-Sign签名工具4.apktool工具安卓apk修改开始反编译本文拿Android系统里面的Settings.apk做demo,具体如何将apk获取出来在此就不过多介绍了,直接进入主题:按键win+R输入cmd,打开命令窗口,并将路

  6. ruby-on-rails - 在 Ruby on Rails 中发送响应之前如何等待多个异步操作完成? - 2

    在我做的一些网络开发中,我有多个操作开始,比如对外部API的GET请求,我希望它们同时开始,因为一个不依赖另一个的结果。我希望事情能够在后台运行。我找到了concurrent-rubylibrary这似乎运作良好。通过将其混合到您创建的类中,该类的方法具有在后台线程上运行的异步版本。这导致我编写如下代码,其中FirstAsyncWorker和SecondAsyncWorker是我编写的类,我在其中混合了Concurrent::Async模块,并编写了一个名为“work”的方法来发送HTTP请求:defindexop1_result=FirstAsyncWorker.new.async.

  7. ruby - 是否有将图像文件转换为 ASCII 艺术的命令行程序或库? - 2

    有这样的事吗?我想在Ruby程序中使用它。 最佳答案 试试这个http://csl.sublevel3.org/jp2a/此外,Imagemagick可能还有一些东西 关于ruby-是否有将图像文件转换为ASCII艺术的命令行程序或库?,我们在StackOverflow上找到一个类似的问题: https://stackoverflow.com/questions/6510445/

  8. ruby-on-rails - 使用 Dragonfly 从 URL 分配图像 - 2

    我正在使用Dragonfly在Rails3.1应用程序上处理图像。我正在努力通过url将图像分配给模型。我有一个很好的表格:{:multipart=>true}do|f|%>RemovePicture?Dragonfly的文档指出:Dragonfly提供了一个直接从url分配的访问器:@album.cover_image_url='http://some.url/file.jpg'但是当我在控制台中尝试时:=>#ruby-1.9.2-p290>picture.image_url="http://i.imgur.com/QQiMz.jpg"=>"http://i.imgur.com/QQ

  9. Ruby-vips 图像处理库。有什么好的使用示例吗? - 2

    我对图像处理完全陌生。我对JPEG内部是什么以及它是如何工作一无所知。我想知道,是否可以在某处找到执行以下简单操作的ruby​​代码:打开jpeg文件。遍历每个像素并将其颜色设置为fx绿色。将结果写入另一个文件。我对如何使用ruby​​-vips库实现这一点特别感兴趣https://github.com/ender672/ruby-vips我的目标-学习如何使用ruby​​-vips执行基本的图像处理操作(Gamma校正、亮度、色调……)任何指向比“helloworld”更复杂的工作示例的链接——比如ruby​​-vips的github页面上的链接,我们将不胜感激!如果有ruby​​-

  10. ruby-on-rails - 如何播种图像的路径? - 2

    Organization和Image具有一对一的关系。Image有一个名为filename的列,它存储文件的路径。我在Assets管道中包含这样一个文件:app/assets/other/image.jpg。播种时如何包含此文件的路径?我已经在我的种子文件中尝试过:@organization=...@organization.image.create!(filename:File.open('app/assets/other/image.jpg'))#Ialsotried:#@organization.image.create!(filename:'app/assets/other/i

随机推荐