报错:
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
解决方法:
在style里面添加
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="android:windowNoTitle">true</item>
</style>
在该activity下添加:
参考:https://www.cnblogs.com/hh9601/p/6404728.html