This Activity already has an action bar supplied by the window decor

后端 未结 21 2687
-上瘾入骨i
-上瘾入骨i 2020-11-21 23:45

Trying to move over my stuff to use Toolbar instead of action bar but I keep getting an error saying

java.lang.RuntimeException: Unable to start         


        
21条回答
  •  我寻月下人不归
    2020-11-22 00:43

    I also faced same problem. But I used:

    getSupportActionBar().hide();

    before

    setContentView(R.layout.activity_main);

    Now it is working.

    And we can try other option in Style.xml,

    
    

提交回复
热议问题