为了使用支持操作栏,我的活动必须扩展 ActionBarActivity,当我这样做并启动活动时,应用程序会崩溃:
例外:您需要在此活动中使用 Theme.AppCompat 主题(或后代)。
在我的 styles.xml 我有
<style name="AppBaseTheme" parent="@style/Theme.AppCompat.Light"></style>
在我的 AndroidManifest.xml 中,我有违规活动
<activity android:name="com.example.test3.SettingsActivity"
android:theme="@style/AppBaseTheme" />