Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个低分辨率的图像,这个图像应该显示在网络视图中。用户可以缩放图像,然后我需要在 web 视图得到放大事件后用更高分辨率替换图像。
我应该加载图像并以更高分辨率滚动到相同的 x 和 y。任何想法?有可能顺利进行吗?
我已经尝试过了,但它不起作用
wv.scrollTo(x,y);
尝试这个
private Runnable mScrollDown = new Runnable() { public void run() { WebView webview = (WebView)findViewById(R.id.web_url); webview.scrollBy(0, scrollSpeed); mHandler.postDelayed(this, 200); } };