Android之You need to use a Theme.AppCompat theme (or descendant) with this activity.

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/u011068702/article/details/81531032

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就行了

猜你喜欢

转载自blog.csdn.net/u011068702/article/details/81531032