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

方案1 在清单文件 下面加上样式

android:theme="@style/Theme.AppCompat.Light.NoActionBar"
<activity android:name=".activity.MainActivity"
android:theme="@style/Theme.AppCompat.Light.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>

</activity>



方案2  继承自activity 而不是appcompcatactivity


这种方法极其的low