我一直在玩AppBarLayout,但是我找不到讓背景透明的方法。AppBarLayout透明度
這裏我的意思:
這裏是我的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"
tools:context=".MainActivity">
<android.support.v7.widget.RecyclerView
android:id="@+id/recycler"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:overScrollMode="never"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:elevation="0dp"
android:background="@android:color/transparent">
<TextView
android:id="@+id/toolbar"
app:elevation="0dp"
android:text="hey"
android:textColor="@android:color/white"
android:layout_width="match_parent"
android:layout_height="45dp"
android:background="#8000CDFE"
app:layout_scrollFlags="scroll|enterAlways"/>
</android.support.design.widget.AppBarLayout>
</android.support.design.widget.CoordinatorLayout>
正如你可以看到我使用的顏色#8000CDFE應該給我50%的透明度,但由於某種原因它沒有。我已經嘗試將透明背景設置爲AppBarLayout,但它也沒有多大幫助。
有沒有人遇到過這個問題?無論如何要將透明顏色分配給AppBarLayout及其「兄弟姐妹」?
謝謝。
您需要向我們提供一個更完整的XML 。知道你的意見的父母佈局可能會有所幫助。 – Ari
@Ari提供了完整的XML – Kistamushken
我認爲它是半透明的。 – Apurva