使用音量键滚动 webView 第二部分
与线程相关: 使用音量键滚动 webView
我该如何实现这是一个类(或一种简写方式),因此它可以用于所有 WebView,而无需为每个 WebView 一遍又一遍地重写? nxt WebView id 是“webPg02”、“webPg03”等...全部嵌套在我的 VeiwFlipper 中,ID 为“AC4313”。
我确信这确实很基础,但再次感谢您帮助这个 Android nooB!
Related to the thread: Scroll webView with volume keys
How can I implement this as a class (or a short-hand way) so it can be used for all WebViews w/o having to rewrite over and over again for each WebView? The nxt WebView id's are "webPg02", "webPg03", and so on... All nested within my VeiwFlipper with id "AC4313".
I'm sure this is really basic but once again thanks for helping this Android nooB!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的 Activity 中实现
onKeyDown()
并将按钮按下操作应用于当前WebView
。Implement
onKeyDown()
in your activity and apply the button presses to the currentWebView
.