3

我用 Enter 和 Exit 慢速动画制作了一个对话框。但是该对话框包含一个 webview myMsg(加载本地文件,因此没有延迟)并弄乱了动画。

使用下面的代码(没有 web 视图),对话框可以完美运行,在 Enter 和 Exit 处都有动画。但是,如果我取消注释 line //builder.setView(myMsg), Exit 动画仍然可以正常工作,但 Enter 动画没有执行(或执行得太快)。有趣的是,如果我将应用程序最小化并再次最大化,则 Enter 对话框动画执行得很好。

这就像 webview 加载弄乱了 Enter 动画。我试图在加载 webview 后显示对话框,结果相同。

这不是疯了吗??关于发生了什么以及如何解决它的任何线索?任何帮助,将不胜感激。

这是代码的相关部分:

    WebView myMsg = new WebView(context);
    myMsg.loadUrl("file:///android_asset/page.html");

    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setIcon(R.drawable.ic_launcher);
    //builder.setView(myMsg);
    builder.setTitle("Some Title");
    final AlertDialog dialog = builder.create();

    WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
    lp.windowAnimations = R.style.AnimateDialog;

    dialog.show();
    dialog.getWindow().setAttributes(lp);

并且在风格上,

<style name="AnimateDialog">
    <item name="android:windowEnterAnimation">@anim/in_left</item>
    <item name="android:windowExitAnimation">@anim/out_left</item>
</style>

编辑

我尝试了 a setWebViewClient,但没有运气(没有行dialog.getWindow().setLayout...Enter 动画根本不起作用):

    WebView myMsg = new WebView(context);
    myMsg.getSettings().setJavaScriptEnabled(true);
    myMsg.loadUrl("file:///android_asset/" + page);
    myMsg.setBackgroundColor(0);
    myMsg.setSoundEffectsEnabled(true);

    AlertDialog.Builder builder = new AlertDialog.Builder(context);
    builder.setIcon(R.drawable.ic_launcher);
    builder.setTitle("SomeTitle");
    builder.setView(myMsg);
    final AlertDialog dialog = builder.create();

    myMsg.setWebViewClient(new WebViewClient() {
        @Override
        public void onPageFinished(WebView view, String url) {
            super.onPageFinished(view, url);
            dialog.show();
            dialog.getWindow().setWindowAnimations(R.style.AnimateDialog);
            dialog.getWindow().setLayout(WindowManager.LayoutParams.FILL_PARENT, WindowManager.LayoutParams.FILL_PARENT);
        }
    }

编辑2

我还尝试使用 Dialog 而不是 AlertDialog,使用 xml 布局,遇到相同的问题(也尝试过,WebView.loadData而不是WebView.loadUrl相同的问题):

    final Dialog d = new Dialog(context);
    d.setContentView(R.layout.viewhtml);
    d.setTitle("SomeTitle");
    // Without this, Enter animation does not work
    d.getWindow().setLayout(WindowManager.LayoutParams.FILL_PARENT,
            WindowManager.LayoutParams.FILL_PARENT);
    WebView wv = (WebView) d.findViewById(R.id.webview);
    wv.loadUrl("file:///android_asset/" + page);
    wv.setBackgroundColor(0);
    d.getWindow().setWindowAnimations(R.style.AnimateDialog);
    wv.setWebViewClient(new WebViewClient() {
        @Override
        public void onPageFinished(WebView view, String url) {
            super.onPageFinished(view, url);
            d.show();
        }
    });

这是对话框 xml 布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<WebView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:soundEffectsEnabled="true" >
</WebView>

</LinearLayout>

编辑3

我刚刚意识到在使用 a 而不是 a 时会发生同样TextViewTextView.setText(Html.fromHTML...)问题WebView。此外,如果我添加dialog.getWindow().setLayout(600,800) after dialog.show(),动画将按预期执行。所以看来问题是在事先不知道对话框大小的情况下不执行动画?

4

2 回答 2

0

您的对话动画似乎被 WebView 搞砸的原因是 WebView 内容加载的异步性质。因此,即使内容来自本地文件或字符串,将loadUrl,loadData或什至放在loadDataWithBaseURL前面也不能保证内容已经完全加载。dialog.show()仍然有一点延迟(通常是一秒或不到一秒)。

如果要在 WebView 内容完全加载后才onPageFinished真正显示对话框,则必须在WebViewClient. 我已经对此进行了测试,并且它在 ICS 上运行良好,但当然,从用户激活对话框和 WebView 内容的可用性开始会有轻微的延迟。如果轻微的延迟没问题,那么这个解决方案可能适合您。

您可以通过这种方式修改您的代码(更新为包含setWebViewClient):

WebView myMsg = new WebView(context);

AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setIcon(R.drawable.ic_launcher);
builder.setView(myMsg);
builder.setTitle("Some Title");
final AlertDialog dialog = builder.create();

// hook a listener for page load complete
WebViewClient webviewclient = new WebViewClient() {
    @Override  
    public void onPageFinished(WebView view, String url) {
        super.onPageFinished(view, url);
        dialog.show(); // show the dialog here
    }
};
myMsg.setWebViewClient(webviewclient);

myMsg.loadUrl("file:///android_asset/page.html");
WindowManager.LayoutParams lp = dialog.getWindow().getAttributes();
lp.windowAnimations = R.style.AnimateDialog;

//dialog.show(); // do not show until content is truly available
dialog.getWindow().setAttributes(lp);

我已经用我的 Nexus 7 和 Android 4.3 对其进行了测试,但内容的显示仍然会被系统动画时间延迟,就像我在之前的建议中讨论的那样,所以你必须解决我在 Android 4.3 上遇到的同样问题。

于 2013-08-05T09:20:32.407 回答
0

我有一个类似的问题,但我不想放动画,而是想禁用它,因为它弄乱了我的 Dialog with WebView 的明显加载时间。我实际上能够禁用主窗口动画进入/退出,因为它不再淡入/淡出,但问题是 WebView 的内容大部分时间都被对话框的幻灯片动画延迟,我也在尝试禁用(我真的认为如果禁用窗口动画,则应该禁用所有动画)。

根据我的测试,这实际上是一个 Jellybean 错误,但它在 Android 4.3 中最为明显,额外的动画搞砸了我的弹出窗口。不过ICS没有问题。

如果您尝试通过 Android 设置 -> 开发人员选项 -> 窗口动画比例来增加默认动画时间,比如 5 甚至 10,您会注意到现在内容的显示更加延迟。但是如果关闭动画,显示会很快。我相信如果禁用默认动画,您的动画也可能会起作用。

我认为这种行为是果冻豆错误,仅当您在 Dialog 中使用 WebView 时才会出现。该对话框将 WebView 内容放在动画时间之后,即使它应该已经被禁用,因为它随着高度的增长而滑动。

我尝试的另一个解决方案是缓存 Dialog 以便可以重复使用。我的问题消失了,但有时无法正确调整大小以适应实际的 HTML 内容。现在,如果您的内容在显示时的长度基本相同,您可能只需要缓存您的 Dialog。

我希望我给了你很多线索。

于 2013-08-03T04:57:52.620 回答