Newer
Older
VipVideo / app / src / main / res / values / style.xml
bello on 12 Jan 2021 758 bytes tv功能
<?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>