gpt4 book ai didi

java - 将图像加载到自定义 ArrayAdapter

转载 作者:行者123 更新时间:2023-12-01 22:15:57 26 4
gpt4 key购买 nike

我尝试使用 arrayAdapter 自定义将图像和文本加载到 ListView,但加载图像失败

这是我的数组适配器

public class CustomAdapter extends ArrayAdapter<Post> {

private ImageTask image;

public CustomAdapter(Context context, ArrayList<Post> posts) {
super(context, 0, posts);
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
// Get the data item for this position
Post post = getItem(position);
// Check if an existing view is being reused, otherwise inflate the view
if (convertView == null) {
convertView = LayoutInflater.from(getContext()).inflate(R.layout.post_list, parent, false);
}
// Lookup view for data population
TextView tituloView = (TextView) convertView.findViewById(R.id.titulo);
TextView subtituloView = (TextView) convertView.findViewById(R.id.subTitulo);
ImageView fotoView = (ImageView) convertView.findViewById(R.id.imageView);
TextView textoView = (TextView) convertView.findViewById(R.id.texto);


// Populate the data into the template view using the data object
tituloView.setText(post.post_titulo);
subtituloView.setText(post.post_sub_titulo);
//this like idk if are the way corret for load the image into ViewImage specific
new ImageTask(fotoView).execute("http://java.sogeti.nl/JavaBlog/wp-content/uploads/2009/04/android_icon_256.png");

textoView.setText(post.post_texto);
// Return the completed view to render on screen
return convertView;
}
}

这里是 ImageTask 图像

public class ImageTask extends AsyncTask<String, Void, Bitmap> {
ImageView bmImage;

public ImageTask(ImageView bmImage) {
this.bmImage = bmImage;
}

protected Bitmap doInBackground(String... urls) {
String urldisplay = urls[0];
Bitmap mIcon11 = null;
try {
InputStream in = new java.net.URL(urldisplay).openStream();
mIcon11 = BitmapFactory.decodeStream(in);
} catch (Exception e) {
Log.e("Error", e.getMessage());
e.printStackTrace();
}
return mIcon11;
}

protected void onPostExecute(Bitmap result) {
bmImage.setImageBitmap(result);
}
}

这是来自 MainActivity 的调用

// Create the adapter to convert the array to views
CustomAdapter adapter = new CustomAdapter(this, arrayOfPost);
// Attach the adapter to a ListView
ListView listView = (ListView) findViewById(R.id.lvUsers);
listView.setAdapter(adapter);

arrayOfPost 是解析 jonson 到 ArrayList 的结果,链接图像包含在其中,但在本例中我使用来自 google 开发人员的图像

以及此处数组适配器使用的 xml

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >

<TextView
android:id="@+id/titulo"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<ImageView
android:id="@+id/imageView"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<TextView
android:id="@+id/subTitulo"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

<TextView
android:id="@+id/texto"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</LinearLayout>

有人知道我的错误是什么以及我应该如何加载图像吗?我不知道是否是在特定 ViewImage 中加载图像的正确方式//这几行是一流的发布

new ImageTask(fotoView).execute("http://java.sogeti.nl/JavaBlog/wp-content/uploads/2009/04/android_icon_256.png");

最佳答案

在 AsyncTask 中加载图像的步骤

第 1 步:

ImageView fotoView = (ImageView) convertView.findViewById(R.id.imageView);

第 2 步:

String URL1 = "http://java.sogeti.nl/JavaBlog/wp-content/uploads/2009/04/android_icon_256.png";

第 3 步:

fotoView.setTag(URL1);
new DownloadImageTask.execute(fotoView);

第 4 步:

public class DownloadImagesTask extends AsyncTask<ImageView, Void, Bitmap> {

ImageView imageView = null;

@Override
protected Bitmap doInBackground(ImageView... imageViews) {
this.imageView = imageViews[0];
return download_Image((String)imageView.getTag());
}

@Override
protected void onPostExecute(Bitmap result) {
imageView.setImageBitmap(result);
}

private Bitmap download_Image(String url) {

Bitmap bmp =null;
try{
URL ulrn = new URL(url);
HttpURLConnection con = (HttpURLConnection)ulrn.openConnection();
InputStream is = con.getInputStream();
bmp = BitmapFactory.decodeStream(is);
if (null != bmp)
return bmp;

}catch(Exception e){}
return bmp;
} }

引用:Android : Loading an image from the Web with Asynctask

关于java - 将图像加载到自定义 ArrayAdapter,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31039741/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com