Webview与facebook登录在Dialog中闪烁

时间:2012-01-05 16:01:51

标签: android facebook dialog webview


我想与包含facebook登录网站的webview进行对话。
我尝试使用PopupWindow - 点击文本字段后键盘没有显示 与AlertDialog相同。最后我使用了纯粹的Dialog类并且它正在“工作”,但是当我点击文本字段时,整个webview都会闪烁,除了文本字段之外变成透明。
我在文本字段焦点后附上警报框和facebook登录网站的截图。

我尝试设置硬件加速或不同的背景,但没有任何影响。 是否有其他方式在webview中显示facebook登录弹出窗口?

谢谢你的帮助! 代码:

Dialog dialog = new Dialog(MyActivity.this);
                    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
                    dialog.setContentView(R.layout.webview_popup);
                    dialog.setCanceledOnTouchOutside(true);


                    dialog.setCancelable(true);
                    WebView popupWebview = (WebView)dialog.findViewById(R.id.webViewFromPopup);

                    popupWebview.loadUrl(url);

                    dialog.show();

XML:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@+id/popupWindow"
    android:background="#000" 
    android:minHeight="600dp">

    <WebView
        android:id="@+id/webViewFromPopup"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" 
        android:layerType="software"
        android:layout_weight="0.8" 
        android:background="#FFFFFFFF"
        />

</LinearLayout>

enter image description here解决方案:


我正在以编程方式构建对话框 - 它正以某种方式解决问题。
代码:

    /* webview popup */
    private Dialog webViewPopup;            

private void showWebViewPopup(final String url)
{
    Dialog dialog = new Dialog(MyActivity.this);
    dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
    dialog.setContentView(R.layout.webview_popup);

    dialog.setCancelable(true);
    WebView popupWebview = new WebView(MyActivity.this);
    LayoutParams params = new LinearLayout.LayoutParams(
        LayoutParams.MATCH_PARENT,
        LayoutParams.WRAP_CONTENT, 0.99f);
    popupWebview.setLayoutParams(params);

    Button cancelButton = new Button(MyActivity.this);
    LayoutParams bParams = new LinearLayout.LayoutParams(
        LayoutParams.MATCH_PARENT,
        LayoutParams.WRAP_CONTENT, 0.01f);
    cancelButton.setLayoutParams(bParams);
    cancelButton.setText("Cancel");
    cancelButton.setOnClickListener(new OnClickListener() {

            public void onClick(View v) {
                webViewPopup.dismiss();
            }
        });

    LinearLayout popupLayout = (LinearLayout) dialog.findViewById(R.id.popupWindow);
    popupLayout.addView(popupWebview);
    popupLayout.addView(cancelButton);
    dialog.show();

    popupWebview.loadUrl(url);
    webViewPopup = dialog;
}

XML:(webview_popup.xml文件)

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:id="@+id/popupWindow"
    android:minHeight="600dp"
    >

</LinearLayout>

1 个答案:

答案 0 :(得分:0)

由于字段的输入给您带来了麻烦,因此可以尝试以自己的形式捕获数据并在到达Webview时对其进行处理。

设置它,以便在用户选择webview中的字段时弹出edittext视图和键盘。