0

I have implemented a Contextual ActionBar, however i would like it it's background to match the ActionBar. Is there a way of changing the background of the Contextual ActionBar?

Naveen Tamrakar
  • 3,349
  • 1
  • 19
  • 28

1 Answers1

3

try this

ActionBar actionbar = getActionBar();
   actionbar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#90DED5")));
Faisal Khan
  • 2,574
  • 3
  • 20
  • 36