如何将主题添加到扩展ActionBarActivity的Abstract Class?

时间:2015-03-03 16:20:05

标签: android android-activity android-actionbar-compat android-toolbar

如何在抽象活动上设置主题?

My Abstract Base类现在正在扩展ActionBarActivity,但编译器正在抱怨

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

根据我的理解,抽象基类无法实例化,因此我无法将其放入AndroidManifest并设置主题。

我尝试在java中设置主题无效。

编辑: 以下是实施的部分内容:

        <activity
        android:name=".Startup.Startup"
        android:screenOrientation="portrait"
        android:theme="@style/AppBaseTheme" 
        ....
        <style name="AppBaseTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <item name="colorPrimary">@color/blue</item>
        <item name="colorPrimaryDark">@color/dark_blue</item>

0 个答案:

没有答案