※ ChatGPTを利用し、要約された質問です(原文:Androidのアクションバー背景色を変更したい)
Androidアプリ開発でアクションバー背景色の変更方法を教えてください
このQ&Aのポイント
Androidのアクションバー及びタブの背景色を変更したいです。
AndroidStudioで開発を行っており、style.xmlを書き換えたりしています。
しかし、変更が反映されずに困っています。解決方法を教えてください。
独学でAndroidアプリ開発を勉強しています。
AndroidStudioで開発を行っており、タブの背景色を変更したいと思い、
いろいろなサイトを参考にstyle.xmlを書き換えたりしているのですが、
一向に変更されず、行き詰まっています。
【res/values/style.xml】
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="@style/Theme.AppCompat">
<item name="android:actionBarStyle">@style/MyActionBar</item>
<!-- Customize your theme here. -->
</style>
<style name="MyActionBar" parent="Widget.AppCompat.Light.ActionBar">
<item name="android:background">@color/background_color</item>
</style>
</resources>
【res/values/color.xml】
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="background_color">#3ADBC6</color>
</resources>
【AndroidManifest.xml】
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.hogehoge.tabtestapp" >
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
最終的には、アクションバー及びタブの背景色を変更したいのですが、
どこか間違っている部分があるでしょうか?
どなたか、ご指導いただけるとありがたいです。
どうぞ宜しくお願い致します。