如何在android活动中禁用工具栏?

时间:2016-04-24 09:27:00

标签: android android-actionbar toolbar

我正在尝试在我的登录活动中禁用工具栏。我已经尝试了迄今为止我能找到的所有方法。

<application
    android:name="app.AppController"
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">

activity
        android:name=".LoginActivity"
        android:label="@string/app_name"
        android:theme="@style/AppTheme.NoActionBar">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

这是我的样式xml文件

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

<style name="AppTheme.NoActionBar">
    <item name="windowActionBar">false</item>
    <item name="windowNoTitle">true</item>
</style>

<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />

<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />

我甚至试图用

以编程方式删除它
this.requestWindowFeature(Window.FEATURE_NO_TITLE);

也删除了这些代码行。

Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);

仍然没有运气。我没有在android studio的设计预览中看到工具栏。但是当我使用模拟器运行应用程序时,它会显示工具栏。我在带有api 22的Nexus 4上仿效它。

我错过了什么或做错了什么吗?任何人都可以指出我正确的方向。

1 个答案:

答案 0 :(得分:1)

我忘了从活动xml中删除工具栏。我只从内容xml文件中删除了工具栏。