如何把背景颜色为Android操作栏,

问题描述:

我怎样才能改变操作栏的而不是默认的黑色的背景。我想要的东西像其他社交网络的Andr​​oid应用程序是如何拥有。

How can i change the background of the action bar instead of that default black one. I want something like how other social networking android applications are having.

您可以使用

ActionBar bar = getSupportActionBar();
bar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("yourColor")));