您好我有一个列表视图示例,其中图像位于可绘制文件夹中...但是我需要从url获取图像Foto
如何将drawable更改为string 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;
    }
}

最佳答案

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

09-11 02:26