2

我正在创建一个 Android 应用程序。在该应用程序中,我使用一个对话框窗口来显示来自服务器端的 HTML 内容。我使用以下方法创建了对话框窗口。

private void displayDialogWindow(String html) {

        // here I have created new dialog window
        dialog = new Dialog(cordova.getActivity(),
                android.R.style.Theme_NoTitleBar);
        dialog.getWindow().getAttributes().windowAnimations =
android.R.style.Animation_Dialog;
        dialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
        dialog.setCancelable(true);


        // creates a new webview to display HTML and attached to
dialog to display
        webview = new WebView(cordova.getContext());
        webview.setLayoutParams(new LinearLayout.LayoutParams(
                LayoutParams.FILL_PARENT, LayoutParams.FILL_PARENT));
        webview.setWebChromeClient(new WebChromeClient());
        webview.requestFocusFromTouch();

        final String mimeType2 = "text/html";
        final String encoding2 = "UTF-8";
        webview.loadDataWithBaseURL("", html, mimeType2, encoding2, "");
        dialog.setContentView(webview);

        // get the screen size of the device
        WindowManager wm = (WindowManager) ctx
                .getSystemService(Context.WINDOW_SERVICE);
        Display display = wm.getDefaultDisplay();
        Point size = new Point();
        display.getSize(size);
        int width = size.x;
        int height = size.y;

        // set appropriate sizes to the dialog window whether there is
side menu or not
        lp.copyFrom(dialog2.getWindow().getAttributes());
        lp.width = width ;
        lp.height = height - 100;
        dialog.getWindow().setAttributes(lp2);

        dialog.show();
    }

使用上述方法,我可以成功创建一个对话框窗口。

我正在使用线程创建对话框窗口,

Runnable runnable = new Runnable() {
public void run() {

                displayDialogWindow(html);

            }
};

但是在显示一次 Dialog 窗口后,我想动态更改 Dialog 窗口的宽度。(例如,当我点击我的应用程序的另一个按钮时,窗口的宽度应该减小并在按下另一个按钮时回到原来的宽度)。

任何人都可以帮助我动态更改对话框窗口的宽度吗?

4

1 回答 1

3

我认为每次要更改对话框时都必须“重新创建”对话框。在yourDialog.show()方法之后,您可以插入以下行:

yourDialog.getWindow().setLayout((6 * width)/7, LayoutParams.WRAP_CONTENT);

这允许您调整对话框窗口及其内容的大小。当然宽度高度是屏幕的大小。

于 2013-09-10T09:24:36.180 回答