我只是尝试在我的视图中添加一个阴影,我测试了我在stackoverflow中找到的许多方法,谷歌没有一个像elevation
那样形成阴影,但是当我在kitkat中测试我的应用程序时我遇到了问题我做了'看到任何阴影,所以这个使用的解决方案可以作为阴影绘制,而不是像elevation
我用于制作阴影的一些代码,但正如我所说的效果不同于elevation
<shape android:shape="rectangle"
xmlns:android="http://schemas.android.com/apk/res/android">
<gradient android:startColor="@android:color/transparent"
android:endColor="@color/black_alpha_12" android:angle="90.0" />
</shape>
和
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item>
<shape android:shape="rectangle">
<solid android:color="#BDBDBD"/>
<corners android:radius="5dp"/>
</shape>
</item>
<item
android:left="0dp"
android:right="0dp"
android:top="0dp"
android:bottom="2dp">
<shape android:shape="rectangle">
<solid android:color="#ffffff"/>
<corners android:radius="5dp"/>
</shape>
</item>
</layer-list>
越来越多的代码我测试它就像一条线而不是只有阴影elevation
给我最好的阴影
最后这是我的傻瓜
compileSdkVersion 25
buildToolsVersion "23.0.0"
defaultConfig {
applicationId "blabla.mmmmmm.com"
minSdkVersion 16
targetSdkVersion 23
versionCode 1
versionName "1.0"
}
所以我只需要一个像elevation
阴影