LoginSignup
0
0

More than 1 year has passed since last update.

ActionBar Titleの色を変更する方法(Kotlin, Android)

Posted at

参考になった動画
Change Title Color of Action Bar in Android Studio

端的に

タイトルの色を変えるにはthemes.xml内にある<style name...parentにひと手間かける必要があります。

「Theme.MaterialComponents.DayNight.DarkActionBar 」の後に
「Bridge」を追加

    <style name="....." parent="Theme.MaterialComponents.DayNight.DarkActionBar.Bridge">
        <item name="titleTextColor">@color/black</item>
    </style>

この手間だけでtitleTextColorがちゃんと動きTitleの色が変更される。

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