Android之You need to use a Theme.AppCompat theme (or descendant) with this activity.
生活随笔
收集整理的这篇文章主要介绍了
Android之You need to use a Theme.AppCompat theme (or descendant) with this activity.
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
1 问题
点击activity的时候,崩溃日志如下
You need to use a Theme.AppCompat theme (or descendant) with this activity.
2 原因
我类的activity是继承了有主题的activity,但是我在AndroidManifest.xml文件里面声明这个类的时候设置的主题如下
android:theme="@android:style/Theme.Light.NoTitleBar"
3 解决办法
让这个类继承普通的Activity就行了
总结
以上是生活随笔为你收集整理的Android之You need to use a Theme.AppCompat theme (or descendant) with this activity.的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: Android之library clas
- 下一篇: Android之屏幕旋转之后当前acti