Android带平移动画的Splash界面Demo

来源:互联网 发布:妄想代理人知乎 编辑:程序博客网 时间:2024/05/22 14:34

SplashDemo

An example of a splash screen with animations on Android

带平移动画效果的Android Splash Demo

在界面上解决了两个问题

1.解决了白屏黑屏闪屏的问题

    <style name="SplashTheme" parent="Theme.AppCompat.NoActionBar">        <item name="android:windowBackground">@drawable/cat</item>        <item name="android:windowFullscreen">true</item>        <item name="android:windowIsTranslucent">true</item>

2.解决了从全屏到非全屏模式下的ActionBar滑动问题

    // 防止从全屏到非全屏模式的ActionBar滑动    SplashActivity.this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN,        WindowManager.LayoutParams.FLAG_FORCE_NOT_FULLSCREEN);

效果:


源码地址:https://github.com/linpeiyou/SplashDemo

0 0
原创粉丝点击