Я делаю приложение для Android и, меняя темы оформления, по ошибке убираю панель действий вверху.
Вот мой Styles.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="Theme.DesignDemo" parent="Theme.AppCompat.Light">
<item name="colorPrimary">@color/ColorPrimary</item>
<item name="colorPrimaryDark">@color/ColorPrimaryDark</item>
<item name="android:windowBackground">@color/window_background</item>
<item name="colorAccent">@color/ColorPrimary</item>
<item name="android:colorBackground">@color/window_background</item>
<item name="windowActionModeOverlay">true</item>
<item name="android:actionBarStyle">@style/MyActionBarTheme</item>
</style>
<style name="MyCustomTheme" parent="@android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/MyActionBarTheme</item>
</style>
<style name="MyActionBarTheme" parent="@android:style/Widget.Holo.Light.ActionBar">
<item name="android:background">@color/ColorPrimaryDark</item>
</style>
<style name="Base.Theme.DesignDemo"
parent="Theme.AppCompat.Light">
Как я могу заставить его появиться снова?