报错方案:You need to use a Theme.AppCompat theme (or descendant) with this activity.

来源:互联网 发布:马龙丁宁知乎 编辑:程序博客网 时间:2024/05/21 10:55

当你的报错为:You need to use a Theme.AppCompat theme (or descendant) with this activity.的时候.

第一步检查你的activity,通常你的activity应该是因为集成了AppCompatActivity,而你的Theme写法不被认可.

比如,你是否是这么写的

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


第二步,修改错误二种方案:


第一,你是不是非常需要AppCompatActivity,如果不是,那么你修改成Activity.报错结束.


第二,你需要AppCompatActivity,那么,修改成:

android:theme="@style/Theme.AppCompat.Light.NoActionBar"


阅读全文
0 0
原创粉丝点击