webview on cocos2d-x 3.0

hi,guys.
i want to show webview in my game.i found a example here.it works fine on cocos2d-x 2.2.0.
but when i’m doing same thing in cocos2d-x 3.0 beta2,the webview can’t show.
http://blog.csdn.net/jackystudio/article/details/17576995

i noticed that cocos2d-x 3.0 using NativeActivity, is it causing webview can’t show?

any suggestion will be greatly appreciated.
thx.

I have this issue…

Anyone have solution?

private WebView mWebView;

protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    mWebView = new WebView(this);
    mWebView.getSettings().setJavaScriptEnabled(true);
    mWebView.loadUrl("http://www.baidu.com");
    getWindowManager().addView(mWebView, new WindowManager.LayoutParams(400,600,
        WindowManager.LayoutParams.TYPE_APPLICATION,
        WindowManager.LayoutParams.FLAG_WATCH_OUTSIDE_TOUCH ,
        PixelFormat.TRANSPARENT));
}

Thanks xieejianglin.

But when i use getWindowManager().addView

the cocos2dx can’t receive any touch!!

do you have any idea to solve this issue?

Thanks a lot