我最近在一个看似简单的Android布局上苦苦挣扎:我想要一个WebView
以上的Button
.它使用以下参数工作正常:
WebView: Height: wrap-content Weight: unset (by the way, what is the default?) Button: Height: wrap-content Weight: unset
但是,如果网页变得太大,它会溢出按钮.我尝试了各种重量和高度的组合,除了一个完全隐藏按钮或部分覆盖按钮.这是有效的(从http://code.google.com/p/apps-for-android/source/browse/trunk/Samples/WebViewDemo/res/layout/main.xml复制):
WebView: Height: 0 Weight: 1 Button: Height: wrap-content Weight: unset
如果您更改其中任何一个,例如给按钮增加一个重量或更改WebView
高度以包裹内容,那么它就不起作用.我的问题是:为什么?有人可以解释一下android布局系统在想什么吗?