从网址Android获取小尺寸图片

时间:2016-02-25 22:08:04

标签: android image url download size

我目前正尝试通过网址下载图片并使用" fromHtml"将其放入TextView中。在我的Android应用程序中。由于幻灯片,我使用的是TextView。我需要同时拥有文字和图片,试图找到一个好的模板。

我实际上得到了正确的图像,但我不明白它为什么这么小。 我试图下载的图片是在wamp服务器上,我已经制作了400x300的图片。

我使用我在StackOverflow上找到的一段代码来从实现ImageGetter和getIntrinsicWidth()以及getIntrinsicHeight()方法的url获取图像,但是他们将图片大小除以4!

我打印了这两个结果,IntrinsicWidth返回100而IntrinsicHeight返回75 ......所以它在我的应用程序中显示一个非常小的图片,我真的不知道为什么,我不能搞清楚......

我尝试使用7360x4912图像并且使用此尺寸我可以在TextView中获得正确的图像尺寸(但仍然除以4,因此我得到1840x1228图像)。

我也尝试将这些值乘以4,但它只是扩大容器而不是内容...

这是我的java代码示例:

@Override
    protected void onPostExecute(Drawable result) {
        // set the correct bound according to the result from HTTP call
        Log.d("IMAGE DEBUG", ""+result.getIntrinsicWidth());
        Log.d("IMAGE DEBUG", ""+result.getIntrinsicHeight());
        int width = result.getIntrinsicWidth();
        int height = result.getIntrinsicHeight();

        urlDrawable.setBounds(0, 0, width, height);

        // change the reference of the current drawable to the result
        // from the HTTP call
        urlDrawable.drawable = result;

        URLImageParser.this.container.setMinimumHeight(result.getIntrinsicHeight());
        URLImageParser.this.container.requestLayout();

        // redraw the image by invalidating the container
        URLImageParser.this.container.invalidate();
    }

    /***
     * Get the Drawable from URL
     * @param urlString
     * @return
     */
    public Drawable fetchDrawable(String urlString) {
        try {
            Log.d("IMAGE DEBUG", "" + urlString);
            InputStream is = fetch(urlString);
            Drawable drawable = Drawable.createFromStream(is, "src");
            drawable.setBounds(0, 0, 0 + drawable.getIntrinsicWidth(), 0
                    + drawable.getIntrinsicHeight());
            return drawable;
        } catch (Exception e) {
            return null;
        }
    }

这是我使用我得到的图片的地方:

TextView panel = (TextView) findViewById(R.id.slidingpanelview);
            URLImageParser p = new URLImageParser(panel, getApplicationContext());

            String name = queryResults.get(mHashMap.get(marker)).getName();
            String address = queryResults.get(mHashMap.get(marker)).getAddress();
            String phonenumber = queryResults.get(mHashMap.get(marker)).getPhoneNumber();

            panel.setText("");
            String titleDisplay = "<table><tr><h2 align=\"center\">"+name+"</h2></tr>";
            String addressDisplay = "<tr><h3 align=\"left\">Address</h3><p>"+address+"</p></tr>";
            String phonenumberDisplay = "<tr><h3 align=\"left\">Phone number</h3><p>"+phonenumber+"</p></tr>";
            String space ="<tr></tr>";
            String imageDisplay = "<tr><img src=\"http://ip_address_from_server/img/"+name+".jpg\"></tr></table>";
            Spanned htmlSpan = Html.fromHtml(titleDisplay + addressDisplay + phonenumberDisplay + space + imageDisplay, p, null);
            //Spanned htmlSpan = Html.fromHtml(titleDisplay + addressDisplay + phonenumberDisplay + space + imageDisplay);
            panel.setText(htmlSpan);

以下是我的Android应用程序中400x300图像的样子: 400x300 result

以下是7360x4912图像的样子: 7360x4912 result

所以基本上我试图在幻灯片中同时显示文字和图像,所以如果你对如何修补这个有一些想法,或者如果你知道另一种方法来做到这一点,那就太棒了。

提前致谢!

1 个答案:

答案 0 :(得分:0)

getIntrinsicWidthgetIntrinsicHeight方法会返回可绘制应该的大小,以便在Android缩放drawable之后。以编程方式创建一个drawable创建一个默认的mdpi drawable,因此,如果您在xxxhdpi设备上运行此应用程序,这将解释您的4x比例因子。

Here is a better explanation of how getIntrinsic functions actually work