1

我在我的 android 应用程序中使用 webview。我想知道是否可以将我网页上的 target="_blank" url 打开到 android 弹出窗口中?或任何其他方式来弹出链接?

4

1 回答 1

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

最终对话框对话框 = 新对话框(上下文);

    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();
于 2012-07-13T20:17:29.680 回答