我的应用程序界面最初看起来像这样。“我的名字”是一个 TextView,“我的按钮”是一个以图像为背景的按钮。最小 SDK 为 16。
我通过添加自定义主题更改了应用程序的操作栏颜色。我使用了下面的代码。
<style name="AppTheme" parent="Theme.AppCompat.Light">
<item name="android:actionBarStyle">@style/MyTheme</item>
<!-- Customize your theme here. -->
</style>
<style name="MyTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:background">@color/com_facebook_blue</item>
</style>
所有背景颜色都更改为应用程序的新颜色。我只需要更改操作栏的颜色。谁能帮我?