Android:bug记录(简单)
theme 冲突
问题:
java.lang.RuntimeException: Unable to start activity ComponentInfo{com.example.demokotlinapplication/com.example.demokotlinapplication.MainActivity}: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.
Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity
.
原因:
1、activity继承AppCompatActivity,使用theme需要为Theme.AppCompat的子项
2、在使用Toolbar的theme中需要使用android:Theme.Material.Light.NoActionBar的子项,需要实现的item为windowActionBar,将其设置为false,因为windowActionBar与Toolbar两个控件实现的同一个功能效果。
3、两者之间存在冲突,需要重新定义
解决:
重新定义theme并修改activity中的theme
<style name="Theme.ToolBarActivity" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>