无法在AppTheme android中获取默认操作栏

时间:2017-01-19 06:04:42

标签: android android-layout android-manifest android-toolbar

我无法获得显示的默认操作栏。我有布局AppTheme,我不知道为什么我无法获得我显示的默认操作栏。

这是清单 -

    <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme" >
    <activity android:name=".MainActivity" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

这里是styles.xml -

<!-- Base application theme. -->
<style name="AppTheme" parent="Base.Theme.AppCompat.Light">
    <!-- Customize your theme here. -->
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>
</style>

以下是问题所在的图片 -

I am not able to get the action bar

感谢您的回答。

0 个答案:

没有答案