1

動作していましたが、現在は動作していません。それについてlogcatには何もありません。

style.xml

<?xml version="1.0" encoding="UTF-8"?>
<resources>
    <style name="DialogSlideAnim" parent="@android:style/Theme.Dialog">
        <item name="android:windowAnimationStyle">@style/DialogAnimation</item>
    </style>
    <style name="DialogAnimation">
        <item name="android:windowEnterAnimation">@anim/push_right_in</item>
        <item name="android:windowExitAnimation">@anim/push_right_out</item>
    </style>
</resources>

ジャワ

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setMessage("Are you sure you want to exit??? Your progress will be saved.")
    .setCancelable(false)
    .setPositiveButton("No", new DialogInterface.OnClickListener() 
        {
            public void onClick(DialogInterface dialog, int id) 
            {

            }
        })
    .setNegativeButton("Yes", new DialogInterface.OnClickListener() 
        {
            public void onClick(DialogInterface dialog, int id) 
            {
                dialog.cancel();
                finish();
            }
        });
AlertDialog alert = builder.create();
alert.hide();
alert.getWindow().getAttributes().windowAnimations = R.style.DialogSlideAnim;
alert.show();

誰かがこのコードに何か問題があると思いますか? 追加のコーディングを行う前にすべてが機能していました...そして、アクティビティには約12個のアラートボックスがあります。

4

0 に答える 0