Change action bar color in android

前端 未结 9 1804
北海茫月
北海茫月 2020-12-05 19:28

I am using the app theme Theme.Black in my app. In this theme the action bar is gray. How I can change color of my action bar? This is my attempt:



        
9条回答
  •  遥遥无期
    2020-12-05 20:09

    if you have in your layout activity_main

    
    

    you have to put

    in your Activity this code

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    
        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);
        toolbar.setBackgroundColor(Color.CYAN);
    }
    

提交回复
热议问题