下面是我的代碼: -的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>
這給了我的預期, 如下透明工具欄: - 但工具欄上的我的FrameLayout重疊,所以我試圖
爭創一流保證金的FrameLayout
使用 '應用程序:layout_behavior = 「@字符串/ appbar_scrolling_view_behavior」'
這段代碼工作,我的FrameLayout不overlaping但我的工具欄轉向white_color。
請幫幫忙!什麼使我的工具欄在透明背景下變成白色。
我試過。但它也使工具欄背景變白。 – Jayshree
@Jayshree沒有我測試過,它的工作 –
好吧..讓我再試一次 – Jayshree