简单实现夜间模式渐变
pujiang_op
8年前
<h2><strong>话不多说,先上效果图!</strong></h2> <p style="text-align:center"><img src="https://simg.open-open.com/show/dd77036e2840be3199845ce2225e4601.gif"></p> <p style="text-align:center">推ter 实现夜间模式</p> <p style="text-align:center"><img src="https://simg.open-open.com/show/78b692babe753c9039086022f15ff278.gif"></p> <p style="text-align:center">我的实现</p> <h2><strong>准备好你的铲铲</strong></h2> <ul> <li>Android Support Library v7 24.2.0</li> </ul> <pre> <code class="language-java"><style name="AppTheme" parent="Theme.AppCompat.DayNight.NoActionBar"></code></pre> <ul> <li> <p>新建values-night文件夹,新建colors.xml,夜间模式要设置的颜色放在这里就好了!</p> </li> </ul> <pre> <code class="language-java">//File : values/colors.xml <resources> <color name="colorPrimary">@color/md_white_1000</color> <color name="colorPrimaryDark">@color/md_grey_600</color> <color name="colorAccent">@color/md_blue_500</color> </resources> //File : values-night/colors.xml <resources> <color name="colorPrimary">#ff243447</color> <color name="colorPrimaryDark">#ff1b2836</color> <color name="colorAccent">@color/md_blue_500</color> </resources></code></pre> <ul> <li> <p>Svg 的 fillcolor 取用你的color.xml 就好了!方便!如果不是svg,就要另外准备夜间模式的图片在drawable-night 文件夹里</p> </li> </ul> <pre> <code class="language-java"><vector xmlns:android="http://schemas.android.com/apk/res/android" android:width="24dp" android:height="24dp" android:viewportHeight="16.0" android:viewportWidth="16.0"> <path android:fillColor="@color/colorPrimary" android:pathData="etc" android:strokeColor="#00000000" android:strokeWidth="1" /> </vector></code></pre> <h2><strong>Show Me the code</strong></h2> <pre> <code class="language-java">//Does not work in Android Nugget public void setDayNightMode(boolean day) { if (day) AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_NO); else AppCompatDelegate.setDefaultNightMode(AppCompatDelegate.MODE_NIGHT_YES); getWindow().setWindowAnimations(R.style.WindowAnimationFadeInOut); recreate(); } //Style <style name="WindowAnimationFadeInOut"> <item name="@android:windowEnterAnimation">@anim/fade_in</item> <item name="@android:windowExitAnimation">@anim/fade_out</item> </style> //@anim/fade_in <set xmlns:android="http://schemas.android.com/apk/res/android"> <alpha android:duration="1000" android:fromAlpha="0" android:interpolator="@android:anim/decelerate_interpolator" android:toAlpha="1.0" /> </set> //@anim/fade_out <set xmlns:android="http://schemas.android.com/apk/res/android"> <alpha android:duration="1500" android:fromAlpha="1.0" android:interpolator="@android:anim/decelerate_interpolator" android:toAlpha="0" /> </set></code></pre> <h2><strong>一点解释</strong></h2> <ol> <li>windowAnimation 在这里的作用是模拟 startActivity 的 OverridingPendingTransition, 搭配 recreate 就不会出现闪现黑屏的情况了。</li> <li>在style 文件里为windowAnimation 创建一个新的style,设定渐入动画和渐出动画。</li> <li>AppCompatDelegate.setDefaultNightMode 是support 包里的方法,我们只要简单设置他的mode 搭配recreate就可以变换夜间模式。</li> </ol> <pre> <code class="language-java">MODE_NIGHT_NO - 日间模式 MODE_NIGHT_YES - 夜间模式 MODE_NIGHT_AUTO - 根据当前时间自动切换 亮色(light)/暗色(dark)主题 MODE_NIGHT_FOLLOW_SYSTEM(默认选项). 设置为跟随系统,通常为 MODE_NIGHT_NO;貌似有些手机设定可以开启夜间模式</code></pre> <h2><strong>备注</strong></h2> <ul> <li>这个渐变效果不支持API 24 Nougat</li> <li>API 24 recreate 不会闪现黑屏</li> </ul> <p>我把这个效果实现在我的项目里了,有兴趣的童鞋可以来看一看星一星!谢谢!</p> <p><a href="/misc/goto?guid=4959715458684370902" rel="nofollow,noindex">https://github.com/chkfung/MeizhiGank</a></p> <h2><strong>Reference</strong></h2> <ol> <li><a href="/misc/goto?guid=4959715458772377951" rel="nofollow,noindex">https://kingideayou.github.io/2016/03/07/appcompat_23.2_day_night/</a></li> </ol> <p> </p> <p>来自:http://www.jianshu.com/p/f30ebec8b4ed</p> <p> </p>