android中的iframe问题

时间:2013-03-01 09:40:57

标签: android cordova iframe

嗨我在我的android phonegap app.i中使用了iframe设置了宽度和高度,iframe正在滚动。但是iframe中的网页被禁用了。我无法在网页文本框中输入任何内容。

如果我设置了滚动=“否”,则iframe不会滚动。但我可以输入文本框。

这是我的代码:

<iframe src="http://google.com" width="100%" height="200px" scrolling="no"></iframe>

我可以在iframe中滚动网页,也可以输入文本框。请帮我解决这个问题。谢谢提前。

1 个答案:

答案 0 :(得分:0)

检查一次并在onCreate方法中使用它:

Webview.requestFocus(View.FOCUS_DOWN);
    Webview.setOnTouchListener(new View.OnTouchListener() {
        @Override
        public boolean onTouch(View v, MotionEvent event) {
            // TODO Auto-generated method stub
             switch (event.getAction()) {
                case MotionEvent.ACTION_DOWN:
                case MotionEvent.ACTION_UP:
                    if (!v.hasFocus()) {
                        v.requestFocus();
                    }
                    break;
            }
            return false;

        }
    });