当前位置: 代码迷 >> Android >> android的小疑点:You need to use a Theme.AppCompat theme
  详细解决方案

android的小疑点:You need to use a Theme.AppCompat theme

热度:182   发布时间:2016-04-28 04:28:21.0
android的小问题:You need to use a Theme.AppCompat theme

android的一个小问题:

?

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

?

当在AndroidManifest.xml文件的application的节点设置了属性:

android:theme="@android:style/Theme.NoTitleBar

而Activity继承了ActionBarActivity就回出现上述错误,解决的办法就是让Activity去继承Activity而不是ActionBarActivity

  相关解决方案