对话主题动画问题

时间:2016-10-07 14:22:04

标签: android android-alertdialog android-theme android-styles android-dialog

我使用AlertDialog类创建了一个对话框。使用自定义视图。我想为它设置进入和退出动画。当我尝试执行该对话框时,将自身转换为小黑色背景视图。如何获得适当视图的动画?
Right view wrong view after theme set

final AlertDialog.Builder builder = new AlertDialog.Builder(
            /*getContext()*/
            new android.support.v7.view.ContextThemeWrapper(getContext(), R.style.StyleDialog));

    View view = getActivity().getLayoutInflater().inflate(R.layout.dialog_email, null);
    builder.setView(view);
    builder.setCancelable(false);
    alert = builder.create();
    alert.show();

这些是样式

<style name="StyleDialog" parent="@android:style/Theme.Dialog">
        <item name="android:windowAnimationStyle">@style/DialogAnimation</item>
    </style>

    <style name="DialogAnimation">
        <item name="android:windowEnterAnimation">@anim/fadein</item>
        <item name="android:windowExitAnimation">@anim/fadeout</item>
    </style>

尝试了android.support.v7.view.ContextThemeWrapperandroid.view.ContextThemeWrapper,但没有区别。

使用android.app.AlertDialog类。

1 个答案:

答案 0 :(得分:3)

我找到了解决方案。只是为我没有给出的布局设置背景(在我的情况下为白色)。因为当我们设置自己的样式时,它默认使用黑色背景,如果不设置样式,则默认使用白色背景。

android:background="@color/bg_white"

如果宽度合适,请将第一个视图宽度设置为match_parent。

android:layout_width="match_parent"