0

When scrolling a webview in Titanium for iPhone, some ugly dropshadows appear to define the limits of the content. These are the native shadows you also get when scrolling to the ends of a page in mobile safari.

See: http://bit.ly/dh11Gx

Would anyone know of a simple way to remove these from within Titanium, or possibly directly within the html?

Thanks!

4

2 回答 2

0

我认为这取决于您要在布局中完成的工作。它必须是webView吗?如果没有,您可以将 scrollView 设置为在滚动或滚动条时不反弹。

也许尝试属性 disableBounce = false; 对于 webView,看看是否有效?

于 2010-11-08T19:02:25.793 回答
0

能够通过将 webview 放置在另一个元素(tableview 或视图)中来实际解决此问题,并为 webview 提供等于或小于封闭元素的固定高度。

例如。webview = 200px 高

tableviewrow = 200px 高

tableviewrow.add(webview);

于 2010-11-10T23:50:54.007 回答