<?xml version="1.0" encoding="utf-8"?>
<resources>
<!--pop底部进出动画-->
<style name="popBottomAnim">
<item name="android:windowEnterAnimation">@anim/anim_bottom_in</item>
<item name="android:windowExitAnimation">@anim/anim_bottom_out</item>
</style>
<!--pop顶部进出动画-->
<style name="popTopAnim">
<item name="android:windowEnterAnimation">@anim/anim_top_in</item>
<item name="android:windowExitAnimation">@anim/anim_top_out</item>
</style>
<!--pop左侧进出动画-->
<style name="popLeftAnim">
<item name="android:windowEnterAnimation">@anim/anim_left_in</item>
<item name="android:windowExitAnimation">@anim/anim_left_out</item>
</style>
</resources>