弹出窗口中的Android webview open target =“_ blank”url

时间:2012-07-13 17:58:20

标签: java android webview

我在我的Android应用程序中使用webview。 我想知道是否有可能在我的网页上打开target =“_ blank”url进入android弹出窗口? 或任何其他方式弹出链接??

1 个答案:

答案 0 :(得分:1)

//LAYOUT FILE webview_content.xml

    <WebView
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"

        android:id="@+id/webView"
        android:scrollbarAlwaysDrawVerticalTrack="false"
        android:scrollbars="none" >
    </WebView>

</RelativeLayout>

///CODE IN ACTIVITY

final Dialog dialog = new Dialog(context);

    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.getWindow().requestFeature(Window.FEATURE_PROGRESS);
    dialog.setContentView(R.layout.webview_content);





    WebView webView = (WebView) dialog
            .findViewById(R.id.webView);
    webView.getSettings().setJavaScriptEnabled(true);
             webView.loadUrl("YOUR URL");

       dialog.show();