Actionbar background is not being changed

前端 未结 2 1927
Happy的楠姐
Happy的楠姐 2020-12-11 09:48

I have tried with the following code to change the background of the actionbar. It works with 4.3 but not below 4.3. With the following code, null background is being set i

2条回答
  •  渐次进展
    2020-12-11 10:06

    Finally,I found the solution. It was acheived by showing and hiding the title of action bar after setting background.

    getActionBar().setBackgroundDrawable(ContextCompat.getDrawable(this,R.drawable.inbox_header)); 
    actionBar.setDisplayShowTitleEnabled(true);
    actionBar.setDisplayShowTitleEnabled(false);
    

    Thank you all for your concern.

提交回复
热议问题