我正试图在Google Play应用中实现透明阴影。 向下滚动时,瓷砖位于阴影后面,但您可以看到它们抛出它。请参见此处的示例图片:
我创建了一个视图,我可以通过
添加到布局中<include layout="@layout/toolbar_shadow" />
toolbar_shadow.xml
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<View
android:layout_width="match_parent"
android:layout_height="4dp"
android:background="@drawable/shadow"
/>
</LinearLayout>
shadow.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="@android:color/transparent"
android:centerColor="#33333333"
android:endColor="#aa666666"
android:angle="90" />
</shape>
我得到的是一个不透明的阴影。当瓷砖在其后面移动时,它会被白色/灰色*颜色覆盖。
* ENDCOLOR =&#34;#aa666666&#34;来自shadow.xml
有人可以帮我吗?
答案 0 :(得分:1)
尝试此操作,但根据需要更改渐变颜色
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:angle="270"
android:endColor="#0eb0a0"
android:startColor="#0e9083">
</gradient>
</shape>
或者只是将工具栏放入appbarlayout
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:background="@null"
android:fitsSystemWindows="true"
app:elevation="3dp">
<include layout="@layout/toolbar"/>
</android.support.design.widget.AppBarLayout>
答案 1 :(得分:0)
您不能使用这种方式添加透明阴影。由于您的阴影区域在酒吧内,因此android在第一个活动中不允许使用透明背景。一句话,您应该将阴影添加到顶部栏下方的列表布局的顶部。希望对您有用。