如何在没有主题的情况下更改标题栏颜色
如何在不使用主题的情况下更改标题栏的背景颜色。 Android 中的 TNK。
How I can change background color of titlebar without using theme. tnks in Android.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试使用以下代码
Try with the following code
ActionBar 栏 = getActionBar();
bar.setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.material_blue_gray1)));
ActionBar bar = getActionBar();
bar.setBackgroundDrawable(new ColorDrawable(getResources().getColor(R.color.material_blue_gray1)));
我认为其他讨论会对您有所帮助:
设置标题背景颜色
I think this other dicussion will be helpful to you:
Set title background color