我是新的android如何更改我的应用程序名称文本颜色和字体大小,我的默认文本颜色是黑色,我想改变它为白色,并增加我的字体大小请任何一个帮助我
样式.xml
我的默认文本颜色是黑色我想改变它的白色
<resources xmlns:android="http://schemas.android.com/apk/res/android">
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<item name="android:actionBarStyle">@style/MyActionBarTheme</item>
<item name="android:actionBarTabTextStyle">@style/ActionBarTabText</item>
<item name="android:titleTextStyle">@style/MyActionBarTitleText</item>
<item name="android:actionBarTabStyle">@style/tabStyle</item>
<item name="android:actionBarDivider">@null</item>
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
<style name="MyActionBarTheme" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">#029C7A</item>
</style>
<style name="ActionBarTabText" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:textColor">#CFCFC4</item>
<item name="android:gravity">center</item>
</style>
<style name="MyActionBarTitleText" parent="@android:style/TextAppearance.Holo.Widget.ActionBar.Title">
<item name="android:textColor">#FFFFFF</item>
</style>
<style name="tabStyle" parent="@android:style/Widget.Holo.Light.ActionBar.TabView">
<item name="android:tabStripEnabled">false</item>
</style>
</resources>
4条答案
按热度按时间snvhrwxg1#
使用AppCompat Theme,可以这样做。在styles.xml中定义一个自定义样式,如下所示:
然后在您希望更改操作栏颜色的Activity布局中添加工具栏:
最后,在activity的java文件中,将以下行添加到onCreate的
setContentLayout
之后:注意:要使其正常工作,您必须添加:
在dependencies下的build.gradle(module:app)。(有两个依赖项,一个在buildscipt下,一个在末尾。将该行添加到末尾的依赖项。
zwghvu4y2#
我创建了自己的自定义视图并将其添加到操作栏:
请看下面的代码:
如何将自定义视图设置为ActionBar?
custom_actionbar.xml文件:
使用方法:
这是一个示例,展示了如何创建自定义视图并将其设置为actionbar。
您可以根据自己的要求进行修改。
注意:这里我使用了我的资源,我没有提供给你,你可以随意修改。
谢谢!!
5cg8jx4n3#
我在下面的链接找到了这个。它对我很有效。
Changing text size and style in action bar
yzxexxkh4#
尝试添加此
字体大小