如何删除android中的蓝色操作栏?

时间:2015-11-14 17:44:25

标签: java android xml

我正在创建一个Android应用程序,但我有一些问题,我不能删除这个蓝色标题或我不知道它是如何调用,或动作栏? 我尝试了一些方法,但它们没有用。 enter image description here

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent"
    android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:paddingBottom="@dimen/activity_vertical_margin"

    tools:showIn="@layout/activity_main"
    tools:context=".MainActivity"
    android:background="#9AEA30">

    <ImageView
        android:layout_width="250dp"
        android:layout_height="250dp"
        android:id="@+id/imageView"
        android:src="@drawable/discount"
        android:layout_alignParentLeft="true"
        android:layout_alignParentStart="true" />

</RelativeLayout>

7 个答案:

答案 0 :(得分:3)

你尝试了什么?

只需在styles.xml

中添加即可
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">

</style>

并且

android:theme="@style/AppTheme"
AndroidManifest.xml部分的application

答案 1 :(得分:1)

删除它的最简单方法是让Activity扩展Activity课程,而不是AppCompatActivity

这是做这样的事情:

public class MyActivity extends Activity {

}

答案 2 :(得分:1)

在您的样式文件(res / values / styles.xml)中声明项目的样式。

例如

    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
            <!-- Customize your theme here. -->
    </style>

使用“Theme.AppCompat.Light.NoActionBar”更改“Theme.AppCompat.Light.DarkActionBar”

像这样

    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
            <!-- Customize your theme here. -->
    </style>

对于黑暗主题也可以实现同样的目标。

答案 3 :(得分:0)

如果您使用的是Android Studio,则可以选择从预览窗口更改主题,而无需任何代码。

答案 4 :(得分:0)

这种方法对我有用:

从以下activity_main.xml中删除此代码:

<android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

答案 5 :(得分:0)

可能会迟到但我找到了一种方法,只需从xml布局中删除以下代码

<android.support.design.widget.AppBarLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.v7.widget.Toolbar
        android:id="@+id/toolbar"
        android:layout_width="match_parent"
        android:layout_height="?attr/actionBarSize"
        android:background="?attr/colorPrimary"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

</android.support.design.widget.AppBarLayout>

答案 6 :(得分:0)

这是IMO最简单,最干净的解决方案:

    ActionBar actionBar = getSupportActionBar();
    if (actionBar != null) {
        actionBar.hide();
    }