0

我创建了一个 android 应用程序,我用相机捕获图像并上传到服务器。我有一个图像列表视图,我在其中显示图像。但是 listView 总是显示图标图像。我已经测试了服务器图像,图像总是在上传,但列表视图没有显示。

4

1 回答 1

0

下面给出了我用来加载图像的三种方法。

private Drawable ImageOperations(String url, String saveFilename) {
        try {
            InputStream is = (InputStream) this.fetch(url);
            Drawable d = Drawable.createFromStream(is, "src");

            return d;
        } catch (MalformedURLException e) {
            return null;
        } catch (IOException e) {
            return null;
        }
    }

    public Object fetch(String address) throws MalformedURLException,
            IOException {
        URL url = new URL(address);
        Object content = url.getContent();
        return content;
    }

    public int getCount() {
        // TODO Auto-generated method stub
        int sizef=items.size();
        Log.i("Size", sizef+"");
        return items.size();
    }

但是现在如何加载图像,因为服务器现在从 Get 方法更改为 Post 方法。使用 https 的服务器:

于 2012-07-13T20:11:20.520 回答