您好,登錄后才能下訂單哦!
不懂如何實現AndroidQ黑暗模式適配??其實想解決這個問題也不難,下面讓小編帶著大家一起學習怎么去解決,希望大家閱讀完這篇文章后大所收獲。
這里簡單介紹一下Android的新特性:
每年的Google大會一結束就是程序員忙碌工作的開端,各種適配,各種新功能… 一堆事情下來,搞的焦頭爛額。 但是今年的發布會之后,仔細一看Q的更新清單,其實需要我們去適配優化的并不多,主要就是隱私權限和黑暗模式需要我們緊急適配。而且黑暗模式和以往的多主題適配是一個道理,這樣我們的跟進優化工作就更加簡單了。廢話不多說,這里我們就來介紹一下在原生系統下進行黑暗模式的適配。
AndroidQ黑暗模式適配:
適配原理介紹:黑暗模式和正常模式,無非就是兩種主題間的切換(主要是各種背景色,字體顏色和Icon)。因此我們只需要定義兩套不同的主題,根據是否是黑暗模式進行主題的切換即可。
詳細步驟:
判斷當前是否處于黑暗模式:用于啟動時還在不同的主題
//檢查當前系統是否已開啟暗黑模式 public static boolean getDarkModeStatus(Context context) { int mode = context.getResources().getConfiguration().uiMode & Configuration.UI_MODE_NIGHT_MASK; return mode == Configuration.UI_MODE_NIGHT_YES; }
定義兩套主題(正常模式和黑暗模式):即在style文件下自定義兩個style,但是必須指定parent為‘Theme.AppCompat.DayNight.DarkActionBar',如下所示:
//正常模式下的主題 <style name="main_theme_light" parent="Theme.AppCompat.DayNight.DarkActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="main_text_color">@color/main_text_color_light</item> <item name="main_bg_color">@color/main_bg_color_light</item> </style> //黑暗模式下的主題 <style name="main_theme_dark" parent="Theme.AppCompat.DayNight.DarkActionBar"> <item name="windowActionBar">false</item> <item name="windowNoTitle">true</item> <item name="main_text_color">@color/main_text_color_dark</item> <item name="main_bg_color">@color/main_bg_color_dark</item> </style>
找出適配黑暗模式需要的屬性(主要是顏色屬性:背景色、字體顏色和Icon顏色等并給屬性賦值),類似如下定義:
供在上一步的style中引用,不同模式下提供不同的值
<!-- 主要字體顏色--> <attr name="main_text_color" format="color" /> <!-- 主要背景顏色--> <attr name="main_bg_color" format="color" /> //不同模式下的顏色屬性值 <color name="main_text_color_light">#000000</color> <color name="main_text_color_dark">#ffffff</color> <color name="main_bg_color_light">#ffffff</color> <color name="main_bg_color_dark">#000000</color>
在activity和xml中引用我們自定義的屬性:
//在xml文件中使用我們自定義屬性 <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="?attr/main_bg_color"> <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Hello World!" android:textColor="?attr/main_text_color" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" /> </androidx.constraintlayout.widget.ConstraintLayout> //在BaseActivity中切換不同的主題,才能使我們自定義的屬性生效,必須在setContentView()方法前設置: @Override protected void onCreate(@Nullable Bundle savedInstanceState) { if (getDarkModeStatus(this)) { setTheme(R.style.main_theme_dark); }else { setTheme(R.style.main_theme_light); } setContentView(R.layout.activity_main) } //為達到更好的適配效果,可在xml文件的activity節點下加入如下屬性: android:configChanges="uiMode"
ps:Icon的適配可以借助tint屬性切換不同模式的顏色。
感謝你能夠認真閱讀完這篇文章,希望小編分享如何實現AndroidQ黑暗模式適配?內容對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,遇到問題就找億速云,詳細的解決方法等著你來學習!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。