android WebView设置最大高度

当我们在dialog中嵌入webview来显示网页信息时,如果网页内容足够长,则会出现dialog高度被撑满屏,但是介于美观问题,我们会试图动态设置webview的最大高度,可是遗憾的是,谷歌并没有给我们提供这个方法,聪明人想出了聪明的办法,具体请看下面代码:

public class MyWebView extends WebView {
	private int mMaxHeight = -1;

	public MyWebView(Context context) {
		super(context);
		// TODO Auto-generated constructor stub
	}
	public MyWebView(Context context, AttributeSet attrs) {
		super(context, attrs);
		// TODO Auto-generated constructor stub
	}
	
	public MyWebView(Context context, AttributeSet attrs, int defStyle) {
		super(context, attrs, defStyle);
		// TODO Auto-generated constructor stub
	}
	
	public MyWebView(Context context, AttributeSet attrs, int defStyle,
			boolean privateBrowsing) {
		super(context, attrs, defStyle, privateBrowsing);
		// TODO Auto-generated constructor stub
	}
	
	public void setMaxHeight(int height){
		mMaxHeight = height;
	}
	
	@Override
	protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
		// TODO Auto-generated method stub
		super.onMeasure(widthMeasureSpec, heightMeasureSpec);
		
		if(mMaxHeight>-1 && getMeasuredHeight()>mMaxHeight){
			setMeasuredDimension(getMeasuredWidth(), mMaxHeight);
		}
	}	
}
结果,世界和平了 微笑

友情提示:设置最大高度一定要在加载内容之前!!!

转自:http://blog.csdn.net/handerhuo/article/details/48003625


  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值