0

我有一个具有透明背景颜色的 webview。这个 webview 是有目的的。我需要在滚动和缩放事件中移动 webview 和意图。如果我想用另一种方式说,想象一下我的意图被一个图像取代,一个 webview 在图像上。webview 有一些文本,但我也需要能够滚动和缩放图像。如何从 webview 识别这些事件并传递到我的 webview 后面的图像?

我是android的新手,ynx

4

1 回答 1

0

对于滚动,将 ScrollView 添加到 relativeLayout。然后将 WebView 添加到 ScrollView.. 例如

LayoutParams mp = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
RelativeLayout rl = new RelativeLayout(this);
setContentView(rl, mp);
ScrollView scroll = new ScrollView(this);
rl.addView(scroll, mp);
WebView wv = new WebView(this);
scrollView.addView(wv, mp);   
scrollView.setText("asfsdfsd")
于 2013-09-22T11:39:05.840 回答