Android - 让导航栏消失

时间:2015-12-10 11:50:47

标签: android android-manifest android-theme android-styles

我'已经搜索了一段时间,我找不到一种方法,使导航栏在Android应用程序中消失。这是我的android studio资源

<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <!-- 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" />
<style name="AppTheme.CustomPop">
    <item name="android:windowIsTranslucent">true</item>
    <item name="android:windowCloseOnTouchOutside">true</item>
</style>

和清单

<?xml version="1.0" encoding="utf-8"?>

<permission
    android:name="com.example.....maps.permission.MAPS_RECEIVE"
    android:protectionLevel="signature" />


<application

    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:supportsRtl="true"
    android:theme="@style/AppTheme.NoActionBar"
    android:label="@string/app_name"
    >

    <activity
        android:name=".Class"
        android:theme="@style/AppTheme.CustomPop" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

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

</application>

我到底得到了什么

enter image description here

我希望带有地图字符串的栏能够消失。

谢谢!

2 个答案:

答案 0 :(得分:1)

您可以使用标记隐藏或显示通知栏

隐藏:

getWindow().addFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);

显示:

getWindow().clearFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN);

现在为actionBar:

隐藏:

getSupportActionBar().hide();

显示:

getSupportActionBar().show();

答案 1 :(得分:0)

放置此行

requestWindowFeature(Window.FEATURE_NO_TITLE);

之后
super.onCreate(savedInstanceState);

在您的Activity onCreate方法中。