Android 夜间模式初探
908301579
8年前
<p>当下各种阅读类APP(如各种浏览器,某日头条等)都会有夜间模式,也顺应了大家的睡前必须玩一下手机的作息习惯。关于夜间模式的实现,有很多种方法。这篇日志学习一下最简单的实现方式,通过setTheme(int resid)方法实现主题切换来实现夜间模式,这也是Android官方推荐的方法。</p> <h2>整体思路与效果</h2> <p>通过Android SDK提供的setTheme方法,可以切换Activity的不同的主题,这样定义一个合适的主题,就可以实现夜间模式了。</p> <p>首先看一下效果图</p> <p><img src="https://simg.open-open.com/show/979c763d4a14022710e7a7cd06b8cb3d.gif"></p> <p>主题切换效果图</p> <h2>定义不同的主题</h2> <h3>自定义主题属性</h3> <pre> <code class="language-java"><resources> <attr name="textColorValue" format="color" /> ... </resources></code></pre> <p>这里我们可以定义一些切换时,需要更改的内容属性。比如说,当前页面中所有文字的颜色,在平时是黑色,在夜间模式是灰色,那么可以在这里定义一个属性,在自定义主题时设置不同的颜色即可。</p> <h3>自定义不同的主题</h3> <pre> <code class="language-xhtml"><!--日间模式主题--> <style name="CustomThemeLight" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/light</item> <item name="colorPrimaryDark">@color/light</item> <item name="colorAccent">@color/black</item> <item name="android:textColorPrimary">@color/black</item> <item name="android:windowBackground">@color/white</item> <item name="textContent">@string/theme0</item> <item name="textColorValue">@color/black</item> <item name="pupwindowTheme">@style/AppTheme.PopupLight</item> </style> <!--夜间模式主题--> <style name="CustomThemeDark" parent="Theme.AppCompat.Light.NoActionBar"> <!-- Customize your theme here. --> <item name="colorPrimary">@color/dark_bg</item> <item name="colorPrimaryDark">@color/dark_bg</item> <item name="colorAccent">@color/dark_bg</item> <item name="android:windowBackground">@color/dark_bg</item> <item name="textContent">@string/theme1</item> <item name="textColorValue">@color/white</item> <item name="pupwindowTheme">@style/AppTheme.PopupDark</item> </style></code></pre> <p>熟悉ToolBar的同学,应该对上面几个属性不陌生。这里首先设置了colorPrimary,colorPrimaryDark,windowBackground等几个属性,<strong>首先确定了这个主题整体的色调</strong>。</p> <p>接下来就是对<strong>自定义属性</strong>的设置,这里我们可以看到在textColorValue的属性在日间模式和夜间模式中分别设置成了黑色和白色,这样就可以和整体的色调形成反差。</p> <h3>自定义属性的使用</h3> <p>接下来,就是将自定义属性作用到布局文件中</p> <pre> <code class="language-xhtml"><RelativeLayout android:layout_marginTop="5dp" android:layout_marginBottom="5dp" android:layout_width="match_parent" android:layout_height="wrap_content"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerVertical="true" android:layout_marginLeft="10dp" android:padding="10dp" android:text="公开文章" android:textColor="?attr/textColorValue" android:textSize="16sp" /> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentRight="true" android:layout_centerVertical="true" android:layout_marginRight="10dp" android:drawablePadding="10dp" android:drawableRight="@mipmap/right_arrow" android:gravity="center_vertical" android:padding="10dp" android:text="11" android:textColor="?attr/textColorValue" /> </RelativeLayout></code></pre> <p>如上面这段代码所示,你可以将应用中所有TextView的TextColor的属性设置为?attr/textColorValue,这样他的值就会根据你在<strong>自定义主题</strong>中所设定的值变化。这样是不是比通过java代码写一大串if-else方便许多呢。</p> <p><strong>到这里你应该想到了,在自定义属性时可以定义各种各样的内容,TextView的大小,ImageView的大小,LinearLayout的背景等等。虽然这样在一开始写代码的时候有些繁琐,但从长远来说,是很有价值的。</strong></p> <h2>主题切换</h2> <p>这里首先需要明确一点,<strong>setTheme方法必须在setContentView方法之前执行,才会有效</strong>(这个有点让人失望,但想想也是必然的),所以呢,采用这种方式实现夜间模式,Activity必然需要重启,因此这里需要考虑到Activity切换的问题,不能让人觉得换了一个夜间模式,整个应用重启了一遍,那也太low了。</p> <h3>Activity切换效果</h3> <pre> <code class="language-java">activity.finish(); activity.overridePendingTransition(R.anim.fade_in, R.anim.fade_out);</code></pre> <p>这里只需定义两个动画效果,<strong>确保Activity切换效果不明显即可</strong>,采用alpha动画即可,这个实现起来应该很简单,这里就不再赘述。</p> <h3>主题切换实现</h3> <pre> <code class="language-java"> @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); mContext = this; Util.onActivityCreateSetTheme(this); setContentView(R.layout.activity_main); }</code></pre> <p>这里我们在setContentView方法之前调用setTheme方法</p> <h3>主题切换工具类util</h3> <pre> <code class="language-java"> public static void onActivityCreateSetTheme(Activity activity) { switch (sTheme) { case Constants.THEME_DARK: activity.setTheme(R.style.CustomThemeDark); break; case Constants.THEME_LIGHT: activity.setTheme(R.style.CustomThemeLight); break; default: break; } }</code></pre> <p>这样就为当前Activity设置了相应的主题。</p> <p>调用下面的方法,传入不同的主题id即可实现主题切换</p> <pre> <code class="language-java"> public static void changeToTheme(Activity activity, int theme) { sTheme = theme; activity.finish(); activity.overridePendingTransition(R.anim.fade_in, R.anim.fade_out); activity.startActivity(new Intent(activity, activity.getClass())); }</code></pre> <p>好了,这里就是关于夜间模式的简单了解。这种方式,相对来说比较繁琐,但也最容易理解。当然,这里只是从最简单的角度出发,没有考虑Activity重启前后数据保存和恢复的问题,以及对Fragment的影响等问题,实际问题还是需要根据实际项目分析,这里就不展开来说。</p> <p>完整代码已上传到github,有兴趣的同学可以参考一下。</p> <p><a href="/misc/goto?guid=4959671886164105839">github代码地址</a></p> <p><em>这里对于自定义属性和主题的用法,还是值得借鉴,即便不一定要用到夜间模式,但是通过切换主题实现UI的更新也是一种考虑。</em></p> <p><br> </p> <p>文/<a href="/misc/goto?guid=4959671886256166797">IAM四十二</a>(简书)<br> </p>