Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity

背景:

集成环信项目,某些个别界面,打开或者启动alterDialog就会崩机,报如图说下错误

Caused by: 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张图片
1.png

原因:

1 该Acitivity继承了某些兼容Activity,如ActionBarActivity,它来自android.support.v7.app.ActionBarActivity ,所以就要使用与其配合的AppCompat的theme才行。

2 application中已经添加了style,activity声明中也添加了style,两则冲突,如图:


Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity_第2张图片
图片.png
Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity_第3张图片
图片.png

解决方法:

1 原因1中的解决方法就是,给报错的Activity加上thme.
2 原因2中 的解决方法就是,根据需求,删除application或者Activity的thme.
更多问题加群:584275290

你可能感兴趣的:(Caused by: java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity)