WebView加载图片居中问题

      项目中涉及到WebView加载一张图片,图片的显示不居中。在一个后台小伙伴的帮助下搞定了。不得不感叹术业有专攻啊。

      网上很多关于怎么居中的,靠谱的没几个,无语

      直接贴代码了,备忘...

     

StringBuffer sb = new StringBuffer();
		 sb.append("<html>")
		.append("<head>")
		.append("<meta http-equiv='Content-Type' content='text/html'; charset='UTF-8'>")
		.append("<style type='text/css'>")
		.append(".response-img {max-width: 100%;}")
		.append("#box {width: 100%;height: 100%;display: table;text-align: center;background: #fff;}")
		.append("#box span {display: table-cell;vertical-align: middle;}")
		.append("</style>")
		.append("<title>")
		.append("</title>")
		.append("</head>")
		.append("<body style='text-align: center;' onClick='window.myInterfaceName.showToast(\"finish Activity\")'>")
		.append("<div id='box'>")
		.append("<span>")
		.append("<img src='" + imageUrl + "' class='response-img' style='width: 100%'/>")
		.append("</span>")
		.append("</div>")
		.append("</body>")
		.append("</html>");
		imgView.addJavascriptInterface(new JavascriptInterface(context),
				"myInterfaceName");
		imgView.loadDataWithBaseURL(null, sb.toString(),  "text/html", "UTF-8", null);


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值