【Android】This Activity already has an action bar supplied by the window decor.
今天在程序运行的时候偶发一个问题:
java.lang.IllegalStateException: This Activity already has an action bar supplied by the window decor. Do not request Window.FEATURE_SUPPORT_ACTION_BAR and set windowActionBar to false in your theme to use a Toolbar instead.、
- 报错原因:设置的主题已经自带ActionBar,但是在Activity还手动设置了WindowActionBar。
- 解决方法:只需要设置不带有ActionBar的主题或在Activity中移除对WindowActionBar的设置。
扫描二维码,在手机上阅读
收藏