Android No Action Bar Glitch

时间:2015-06-11 16:30:42

标签: android android-actionbar appbar

我只是想尝试使用无操作栏。我不知道为什么这不能导入。

<!--
    Base application theme, dependent on API level. This theme is replaced
    by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light.NoActionBar">
    <!--
        Theme customizations available in newer API levels can go in
        res/values-vXX/styles.xml, while customizations related to
        backward-compatibility can go here.
    -->
</style>

<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
    <!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>

错误状态[2015-06-11 22:26:46 - Krowd1] D:\ WorkSpace \ Krowd1 \ res \ values \ styles.xml:7:错误:检索项目的父项时出错:找不到与之匹配的资源给定名称'android:Theme.Light.NoActionBar'。 [2015-06-11 22:26:46 - Krowd1]

我已经尝试过做堆栈上的帖子说要导入V7支持和东西。但要做到这一点,它说拒绝访问?现在该怎么办?

2 个答案:

答案 0 :(得分:0)

要删除操作栏,只需在要删除操作栏的活动中键入此代码。

<style name="AppTheme" parent="Theme.AppCompat.NoActionBar">

</style>

希望它的工作!

答案 1 :(得分:0)

您使用的是哪种API? 您使用的那个仅适用于API 9 因此你需要使用

    <style name="AppTheme" parent="Theme.AppCompat.NoActionBar">
    </style>

确保您已导入appcompat并将您的活动扩展到AppCompactActivity
1.File-&gt;导入(android-sdk \ extras \ android \ support \ v7)。选择“appcompat”

2.Project-&GT;属性 - &GT;机器人。在“添加”部分库中,选择“appCompat”