2015-12-10 148 views
0

我一直在尋找一段時間,我無法找到一種方法來使導航欄消失在Android應用程序。這是我從資源的Android工作室Android - 使導航欄消失

<!-- 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

我想與地圖串酒吧dissapear。

謝謝!

回答

1

您可以隱藏或使用標誌

顯示通知欄隱藏:

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

顯示:

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

的動作條:

隱藏:

getSupportActionBar().hide(); 

顯示:

getSupportActionBar().show(); 
+0

是的!那就是它。其他答案粉碎我的應用程序。謝謝Souiane! –

0

廣場這條線

requestWindowFeature(Window.FEATURE_NO_TITLE); 

右後

super.onCreate(savedInstanceState); 
在活動

onCreate方法。