gpt4 book ai didi

java - 带有 url 图像的 ListView 适配器

转载 作者:行者123 更新时间:2023-12-01 12:20:14 24 4
gpt4 key购买 nike

您好,我有一个 ListView 示例,其中图像位于可绘制文件夹中...但我需要从 url 获取图像 Foto如何将可绘制的内容更改为字符串 url 以正常工作。

我是 Android 新手,抱歉。

public class list_view_comments {

protected Drawable foto;
protected String nombre;
protected String cargo;
protected long id;

public list_view_comments(Drawable foto, String nombre, String cargo) {
super();
this.foto = foto;
this.nombre = nombre;
this.cargo = cargo;
}

public list_view_comments(Drawable foto, String nombre, String cargo, long id) {
super();
this.foto = foto;
this.nombre = nombre;
this.cargo = cargo;
this.id = id;
}

public Drawable getFoto() {
return foto;
}

public void setFoto(Drawable foto) {
this.foto = foto;
}

public String getNombre() {
return nombre;
}

public void setNombre(String nombre) {
this.nombre = nombre;
}

public String getCargo() {
return cargo;
}

public void setCargo(String cargo) {
this.cargo = cargo;
}

public long getId() {
return id;
}

public void setId(long id) {
this.id = id;
}
}

最佳答案

我使用库 Aquery 来解决这个问题 https://code.google.com/p/android-query/

关于java - 带有 url 图像的 ListView 适配器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26718336/

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