美文网首页
问题1:You need to use a Theme.AppC

问题1:You need to use a Theme.AppC

作者: 浩仔_Boy | 来源:发表于2018-03-01 10:51 被阅读967次

改变activity主题,出现错误为:
java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity.

原因:
从错误提示中提到Theme.AppCompat theme,这是因为我们的activity一定是继承了兼容包中的类,android.support.v7.app.AppCompatActivity
所以就要使用与其配合的AppCompat的theme才行。

解决方案:
1.根据提示来使用AppCompat的theme,如下:

  <activity  
  android:name=".MainActivity"  
  android:theme="@style/Theme.AppCompat.Light.NoActionBar"  
  android:label="@string/app_name" >

覆盖安装出现错误

Package com.test.demo new target SDK 22 doesn't support runtime permissions but the old target SDK 27 does.

原因
新版本apk的target是22而老版本的target是27,让新版本的target为27即可解决

相关文章

网友评论

      本文标题:问题1:You need to use a Theme.AppC

      本文链接:https://www.haomeiwen.com/subject/ccqgxftx.html