Android ICS: Remove blue divider in ActionBar?

后端 未结 4 1628
一生所求
一生所求 2020-12-14 00:30

I am working on an app which will be full-screen, but will utilize some of the functionalities of the ActionBar. With the Ice Cream Sandwhich release, I see that I get a blu

4条回答
  •  春和景丽
    2020-12-14 01:16

    Here is a simple way to remove the divider, works from API 07 using the actionbarcompat from the support library:

    @Override
    public void onCreate(Bundle savedInstanceState) {
            //...
            getSupportActionBar().setBackgroundDrawable(
                getResources().getDrawable(R.drawable.whatever_you_want));
            //...
    }  
    

提交回复
热议问题