1

下面是我的代碼: -的FrameLayout在CoordinatorLayout製作工具欄背景透明的白色

<android.support.design.widget.CoordinatorLayout 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@android:color/transparent" 
    android:fitsSystemWindows="true"> 

    <android.support.design.widget.AppBarLayout 
     android:id="@+id/appbarlayout" 
     android:layout_width="match_parent" 
     android:layout_height="wrap_content" 
     android:background="@android:color/transparent" 
     app:elevation="0dp"> 

     <android.support.v7.widget.Toolbar 
      android:id="@+id/toolbar" 
      android:layout_width="match_parent" 
      android:layout_height="?attr/actionBarSize" 
      android:background="@android:color/transparent" /> 
    </android.support.design.widget.AppBarLayout> 


    <FrameLayout 
     android:id="@+id/content_frame" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:layout_below="@+id/appbarlayout" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
    /> 


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

這給了我的預期, 如下透明工具欄: - enter image description here 但工具欄上的我的FrameLayout重疊,所以我試圖

  1. 爭創一流保證金的FrameLayout

  2. 使用 '應用程序:layout_behavior = 「@字符串/ appbar_scrolling_view_behavior」'

這段代碼工作,我的FrameLayout不overlaping但我的工具欄轉向white_color。

新的輸出是如下 enter image description here

請幫幫忙!什麼使我的工具欄在透明背景下變成白色。

回答

2

這將工作

  • 添加RelativeLayout,給背景圖像是
  • 裏面,你可以有AppBarLayoutFrameLayoutandroid:layout_below="@+id/appbarlayout"

例如:

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
    android:layout_width="match_parent" 
    android:layout_height="match_parent" 
    android:background="@android:color/transparent" 
    android:fitsSystemWindows="true"> 

    <RelativeLayout 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     android:background="@drawable/amanda"> 

     <android.support.design.widget.AppBarLayout 
      android:id="@+id/appbarlayout" 
      android:layout_width="match_parent" 
      android:layout_height="wrap_content" 
      android:background="@android:color/transparent" 
      app:elevation="0dp"> 

      <android.support.v7.widget.Toolbar 
       android:id="@+id/toolbar" 
       android:layout_width="match_parent" 
       android:layout_height="?attr/actionBarSize" 
       android:background="@android:color/transparent" /> 
     </android.support.design.widget.AppBarLayout> 


     <FrameLayout 
      android:id="@+id/content_frame" 
      android:layout_width="match_parent" 
      android:layout_height="match_parent" 
      android:layout_below="@+id/appbarlayout" 
      android:background="#332" 
      android:orientation="vertical" /> 
    </RelativeLayout> 
</android.support.design.widget.CoordinatorLayout> 
+0

我試過。但它也使工具欄背景變白。 – Jayshree

+0

@Jayshree沒有我測試過,它的工作 –

+0

好吧..讓我再試一次 – Jayshree

0

嘗試這樣

<?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" 
    android:fitsSystemWindows="true" 
    android:id="@+id/main_content" 
    android:layout_height="match_parent" 
    android:layout_width="match_parent"> 

    <android.support.design.widget.AppBarLayout 
     android:fitsSystemWindows="true" 
     android:id="@+id/appbar" 
     android:layout_height="wrap_content" 
     android:layout_width="match_parent" 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> 

     <android.support.design.widget.CollapsingToolbarLayout 
      android:fitsSystemWindows="true" 
      android:id="@+id/collapsing_toolbar" 
      android:layout_height="256dp" 
      android:layout_width="match_parent" 
      app:contentScrim="?attr/colorPrimary" 
      app:layout_scrollFlags="scroll|exitUntilCollapsed"> 

      <ImageView 
       android:fitsSystemWindows="true" 
       android:id="@+id/image" 
       android:layout_height="256dp" 
       android:layout_width="match_parent" 
       android:scaleType="centerCrop" 
       android:src="@drawable/robert" 
       app:layout_collapseMode="parallax" /> 

      <android.support.v7.widget.Toolbar 
       android:background="@android:color/transparent" 
       android:id="@+id/toolbar" 
       android:layout_height="?attr/actionBarSize" 
       android:layout_width="match_parent" 
       app:layout_collapseMode="pin" 
       app:popupTheme="@style/ThemeOverlay.AppCompat.Light"> 

      </android.support.v7.widget.Toolbar> 

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

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

    <FrameLayout 
     android:id="@+id/content_frame" 
     android:layout_width="match_parent" 
     android:layout_height="match_parent" 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" 
     android:layout_below="@+id/appbarlayout"> 
    </FrameLayout> 

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

你真的應該加入一些解釋,爲什麼這應該工作 - 你也可以添加在代碼本身 意見 - 以目前的形式,它不提供任何解釋,它可以幫助社區的其餘部分了解你做了什麼來解決/回答問題。 – ishmaelMakitla