如何改变android高程阴影的方向?

问题描述 投票:19回答:3

我有FrameLayout与android:elevation =“4dp”。这个高度的阴影朝下。我想改变阴影的方向。

<FrameLayout
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="100dp"
    android:elevation="10dp"
    android:layout_marginBottom="100dp"
    android:background="@color/ColorPrimary"
    android:layout_alignParentBottom="true"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true">
</FrameLayout>
android xml shadow android-framelayout android-elevation
3个回答
9
投票

我认为这种方法是最好的解决方案:Android Bottom Navigation Bar with drop shadow谢谢,Alexander Bilchuk。

解:

您可以使用简单的View及其背景在视图上方绘制自己的阴影:

<View
    android:layout_width="match_parent"
    android:layout_height="4dp"
    android:layout_above="@id/bottom_bar"
    android:background="@drawable/shadow"/>

绘制/ shadow.xml:

<shape xmlns:android="http://schemas.android.com/apk/res/android">
    <gradient
        android:startColor="#1F000000"
        android:endColor="@android:color/transparent"
        android:angle="90" />
</shape>

此外,如果使用此方法,则不存在兼容性问题。


1
投票

就我而言,你不会自己改变阴影。在Androids Material Design中,阴影由您提升元素的数量自动确定。

根据这个问题,https://graphicdesign.stackexchange.com/questions/80644/where-are-the-light-sources-located-in-material-design的光源是

45度高度和90度角

你真的不应该使用不同的阴影,因为它会破坏材料设计的整体一致性。那么你唯一应该做的就是提升你的元素。也许你应该重新阅读Material Design Guidlines:https://material.io/guidelines/material-design/environment.html#environment-light-shadow


0
投票

视图投影可以通过更改视图的轮廓提供者来翻译或缩放x和y方向以及更多,如此post中所详述。

© www.soinside.com 2019 - 2024. All rights reserved.