shubo的博客

gopher/全干工程师

0%

安卓爬坑(二)——Toolbar使用事项


转自https://www.cnblogs.com/hh9601/p/6404728.html # 异常信息:
1
Caused by: 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.
# 问题原因:

当在有activity中调用了setSupportActionBar(toolbar);
而当前使用的主题为默认,或者带默认ActionBar的主题

当在activity中调用了setSupportActionBar(toolbar);

同时,AndroidManifest.xml 对应的Activity标签的android:theme

<android:theme="@style/AppTheme" >

且,style资源文件中的parent为parent="Theme.AppCompat.Light.DarkActionBar

就会报这个异常。

解决方法:

style.xml中加入:

Manifest.xml中,修改theme