博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Android 显示网页图片
阅读量:6323 次
发布时间:2019-06-22

本文共 1513 字,大约阅读时间需要 5 分钟。

WebView web;String url;web.getSettings().setUseWideViewPort(true);web.getSettings().setLoadWithOverviewMode(true);web.getSettings().setDisplayZoomControls(false);web.setVerticalScrollBarEnabled(false);web.setHorizontalScrollBarEnabled(false);web.getSettings().setLayoutAlgorithm(WebSettings.LayoutAlgorithm.SINGLE_COLUMN);String data = "
";web.loadUrl(url);web.loadDataWithBaseURL("",data,"text/html", "UTF-8", "");

WebView web;String url;web.setVerticalScrollBarEnabled(false);web.setHorizontalScrollBarEnabled(false);web.getSettings().setJavaScriptEnabled(true);web.getSettings().setUseWideViewPort(true);web.getSettings().setLoadWithOverviewMode(true);String data = "

";web.loadUrl(url);web.loadDataWithBaseURL("",data,"text/html", "UTF-8", "");

后 参考

ImageView img;String url = "url_example";new AsyncTask
(){    protected Bitmap doInBackground(String... params) {        HttpURLConnection httpURLConnection = null;        try{            httpURLConnection = (HttpURLConnection) new URL(url).openConnection();            final InputStream is = httpURLConnection.getInputStream();            return BitmapFactory.decodeStream(is, null, new BitmapFactory.Options());        }        catch(Exception e) {            e.printStackTrace();        }        finally {         httpURLConnection.disconnect();        }        return null;    }    protected void onPostExecute(Bitmap bitmap) {        img.setImageBitmap(bitmap);    }}.execute(grav);

转载于:https://my.oschina.net/wffger/blog/305915

你可能感兴趣的文章
【CAS单点登录视频教程】 第04集 -- tomcat下配置https环境
查看>>
自适应网页布局经验
查看>>
Ubuntu apache 禁止目录浏览
查看>>
常用脚本--归档ERRORLOG
查看>>
js网页倒计时精确到秒级
查看>>
常用CSS缩写语法总结
查看>>
TDD:什么是桩(stub)和模拟(mock)?
查看>>
C# 模拟POST提交文件
查看>>
PAT 解题报告 1004. Counting Leaves (30)
查看>>
Android开发之蓝牙 --修改本机蓝牙设备的可见性,并扫描周围可用的蓝牙设备
查看>>
[Head First设计模式]生活中学设计模式——外观模式
查看>>
Repository模式中,Update总是失败及其解析
查看>>
.Net 转战 Android 4.4 日常笔记(2)--HelloWorld入门程序
查看>>
[原创]浅谈测试团队转型,思维模式的转变是关键
查看>>
Redis学习-SortedSet
查看>>
android CoordinatorLayout使用
查看>>
机器学习资料大汇总
查看>>
Python selenium 滚动条 详解
查看>>
poj1035Spell checker
查看>>
微信程序开发
查看>>