Android studio 修改标题栏字体颜色
时间: 2023-05-15 12:05:42 浏览: 408
android修改标题栏颜色
你可以通过在 styles.xml 文件中添加以下代码来修改 Android Studio 标题栏字体颜色:
```xml
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="android:textColorPrimary">@color/white</item> <!-- 修改标题栏字体颜色为白色 -->
</style>
</resources>
```
然后在 AndroidManifest.xml 文件中将应用程序的主题设置为 AppTheme:
```xml
<application
android:theme="@style/AppTheme">
...
</application>
```
这样就可以成功修改 Android Studio 标题栏字体颜色了。
阅读全文