Phonegap垂直滚动问题

时间:2013-08-17 03:51:12

标签: android cordova

我正在为Android构建一个phonegap应用程序并且有垂直滚动问题。它类似于Phonegap vertical scroll。我使用和修复Android 2.3但它发生在使用Android 4.0的另一部手机上。您可以在00:10看到视频http://www.youtube.com/watch?v=SADCFRoxj4s。如何在拉动滚动条时将其移除并突出显示?

p / s:它仍然发生在IOS的构建上。我在线使用phonegap build来构建它

1 个答案:

答案 0 :(得分:0)

你想删除高亮?

* { -webkit-tap-highlight-color: rgba(0,0,0,0); } 

您想要删除滚动条吗?调整容器以适合webview大小。如果你没有运气,你仍然可以尝试入侵android webview并禁用滚动

webView.setVerticalScrollBarEnabled(false);

读:

http://webdesign.tutsplus.com/tutorials/htmlcss-tutorials/css3-animations-the-hiccups-and-bugs-youll-want-to-avoid/

http://daneden.me/2011/12/putting-up-with-androids-bullshit/