Androidstudioで作成したアプリでタイトルバーが表示されない。別のタブレットでは表示されるが、携帯電話では表示されない。
携帯電話の表示モードが「Night」だったので、themes.xml(night)を次のように変更する。
<resources xmlns:tools=”http://schemas.android.com/tools”>
<!– Base application theme. –>
<!–<style name=”Base.Theme.KayoinougyouSystem” parent=”Theme.Material3.DayNight.NoActionBar”>–> これを下の行に変更する。
<style name=”Base.Theme.KayoinougyouSystem” parent=”Theme.Material3.DayNight”>
<!– Customize your dark theme here. –>
<!– <item name=”colorPrimary”>@color/my_dark_primary</item> –>
</style>
コメント