0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

AndroidアプリをDarkThemeに対応させる

Last updated at Posted at 2020-05-20

概要

DarkThemeについては以下を参照
https://developer.android.com/guide/topics/ui/look-and-feel/darktheme

リソースの用意

ダークテーマ用のリソースはnightの修飾子がついたディレクトリ(以下nightディレクトリとする)に格納する。
(colorだったらvalues-nightディレクトリにカラーリソースファイルを格納)
既存のリソースディレクトリはlightモード時のものになる。
リソースのうち、ダークテーマに対応する必要がないものはnightディレクトリに格納する必要はない。
(lightモードのものが適用される)。
E0tNMzb85-スクリーンショット 2019-11-25 17.52.50.png
fhp0QD14F-スクリーンショット 2019-11-25 17.51.27.png

AppThemeを変更

AppThemeをTheme.AppCompat.DayNightに変更する。
(NoActionBarの場合はTheme.AppCompat.DayNight.NoActionBar

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?