2017-03-01 78 views
2

我是新來的Android和工作在我的第一個Android應用程序。對於我的應用程序,我需要一個帶導航抽屜按鈕的透明操作欄。除了Action Bar的顏色之外,一切正常。它具有藍色而不是透明。我嘗試了各種方法讓它透明,但它仍然是藍色的。是否有人可以幫助我與我的代碼:如何使我的自定義操作欄透明

custom_navigation_bar.xml:

<?xml version="1.0" encoding="utf-8"?> 
<android.support.design.widget.CoordinatorLayout 
    xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    xmlns:tools="http://schemas.android.com/tools" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:fitsSystemWindows="true"> 

    <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" 
      app:popupTheme="@style/AppTheme.PopupOverlay"/> 

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

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

styles.xml:

<resources> 

    <!-- Themes for Navigation Drawer --> 
    <style name="AppTheme.NoActionBar"> 
     <item name="windowActionBar">false</item> 
     <item name="windowNoTitle">true</item> 
    </style> 

    <style name="AppTheme.AppBarOverlay" 
      parent="ThemeOverlay.AppCompat.Dark.ActionBar"> 
     <item name="android:background">#00000000</item> 
    </style> 

    <style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light"> 
     <item name="android:background">#00000000</item> 
    </style> 
</resources> 

的Java代碼段:

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

    //Setting Transparent Color for Action Bar 
    ActionBar actionBar = getSupportActionBar(); 
    actionBar.setBackgroundDrawable(new ColorDrawable(Color.parseColor("#00000000"))); 
+0

什麼用全透明操作欄的? –

+0

你是否要求actionBar的背景是透明的? –

+0

事情是我有一個導航抽屜。我希望操作欄背景完全透明,操作欄應與下面的佈局重疊。它下面的佈局是有一些形象。只有在操作欄上可見的東西應該是切換導航抽屜的按鈕。 –

回答

1

在基本主題windowActionBarOverlay中有一個項目將其設置爲true並將操作欄顏色設置爲透明。

<resources> 

    <style name="AppTheme" parent="Theme.AppCompat.Light"> 
     <item name="android:textColorPrimary">@color/text_color</item> 
     <item name="colorPrimary">@android:color/transparent</item> 
     <item name="windowActionBarOverlay">true</item> 
    </style> 

</resources> 
1

您可以只設置工具欄背景透明:

<android.support.v7.widget.Toolbar 
     android:id="@+id/toolbar" 
     android:layout_width="match_parent" 
     android:layout_height="?attr/actionBarSize" 
     android:background="#00000000"/>