如何在Android中控制滚动和缩放事件?

时间:2013-09-22 11:29:43

标签: android events webview scroll zoom

我有一个透明背景色的webview。这个webview是出于意图。我需要在滚动和缩放事件中移动webview和intent。如果我想以另一种方式说,只要想象我的意图被图像取代,例如webview就是图像。 webview有一些文本,但我也需要能够滚动和缩放图像。如何从webview识别这些事件并传递给我的webview后面的图像?

我是android的新手,ynx

1 个答案:

答案 0 :(得分: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")