透明系列
dialog.getWindow().setDimAmount(0f);
dialog 移除 进出动画
移除 进出动画
Window window = getWindow();
window.setWindowAnimations(R.style.NullAnimationDialog);
<style name="NullAnimationDialog" parent="@android:style/Animation.Dialog">
<item name="android:windowEnterAnimation">@null</item>
<item name="android:windowExitAnimation">@null</item>
</style>
dialog 自定义进出动画 修改Style文件
<!-- dialog theme. -->
<style name="DialogAnimations" parent="android:Animation">
<item name="android:windowEnterAnimation" >@anim/slide_bottom_in</item>
<item name="android:windowExitAnimation" >@anim/slide_bottom_out</item>
</style>