我要做的是更改webview的字体大小和前景/背景颜色。 我使用以下方法(放在活动中)完成了这个:
private void updateFont(int fontSize, String fontColor) {
if (fontSize != 0) {
contentWebview.getSettings().setDefaultFontSize(fontSize);
}
if (!fontColor.equals("")) {
contentWebview.loadUrl(fontColor);
}
}
现在这个工作正常。但是我在内容Webview中添加了一些东西(这是我创建的自定义webview) - 下面是自定义webview的一些片段:
public class ContentWebview extends WebView {
public ContentWebview(Context context) {
super(context);
}
public ContentWebview(Context context, AttributeSet attrs) {
super(context, attrs);
loadWebview();
gestureDetector = new GestureDetector(new MyGestureDetector());
gestureListener = new OnTouchListener() {
public boolean onTouch(View v, MotionEvent event) {
return gestureDetector.onTouchEvent(event);
}
};
setOnTouchListener(gestureListener);
}
class MyGestureDetector extends SimpleOnGestureListener {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
try {
if (Math.abs(e1.getY() - e2.getY()) > SWIPE_MAX_OFF_PATH) {
return false;
}
// right to left swipe
if(e1.getX() - e2.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
int currentPosition = getScrollX()/displayWidth +1;
scrollTo(currentPosition*displayWidth, 0);
} else if (e2.getX() - e1.getX() > SWIPE_MIN_DISTANCE && Math.abs(velocityX) > SWIPE_THRESHOLD_VELOCITY) {
int currentPosition = getScrollX()/displayWidth;
scrollTo(currentPosition*displayWidth, 0);
}
} catch (Exception e) {
// nothing
}
return true;
}
}
public boolean onTouchEvent(MotionEvent ev) {
if(ev.getAction()==MotionEvent.ACTION_UP) {
int currentPosition = getScrollX()/displayWidth;
if(getScrollX()%displayWidth>displayWidth/2) {
currentPosition++;
} else {
// do nothing
}
scrollTo(currentPosition*displayWidth, 0);
}
return super.onTouchEvent(ev);
}
基本上我创建了一个自定义WebView,当它滚动或闪烁时会捕捉到固定的计算位置。现在问题就出现了 - 一旦我滚动这个特定的webview,之前的方法(updateFont)就不再起作用了 - webview不会改变字体大小或颜色。
我还将问题缩小到这个特定的界限:
setOnTouchListener(gestureListener);
如果我注释掉这一行,即使在我滚动网页视图后,updateFont
方法也会再次运行,但我的网页浏览功能的快照页面也已消失。
我在这里缺少什么?
更新:问题仅发生在froyo设备中。 2.3及以上似乎没有问题
答案 0 :(得分:0)
WebView和GestureDetectors存在一些问题 - 尝试总是在onFling(..)
方法中返回 false 而不是 true - 以你所做的方式使用手势检测器可以阻止非常基本的东西(比如甚至更新当前显示的页面)。
答案 1 :(得分:0)
在对项目进行一些修补之后,我发现自定义webview中加载的属性更改会在一段时间后被解释。延迟是由onNewPictureListener触发对javascript命令的无限调用引起的,该命令在执行其他内容之前首先由webview解释。删除此问题解决了这个问题。