android 给imageView,文字等加上阴影[记录]

满堂花醉三千客,一剑霜寒十四洲。这篇文章主要讲述android 给imageView,文字等加上阴影[记录]相关的知识,希望能为你提供帮助。
1.链接

https://github.com/Devlight/ShadowLayout


2.效果
android 给imageView,文字等加上阴影[记录]

文章图片

 
3.code
compile \'com.github.devlight.shadowlayout:library:1.0.2\'


< com.gigamole.library.ShadowLayout android:layout_width="wrap_content" android:layout_height="wrap_content" app:sl_shadow_angle="2" app:sl_shadow_color="#000" android:id="@+id/sl" app:sl_shadow_distance="5dp" app:sl_shadow_radius="1dp" app:sl_shadowed="true"> < ImageView android:layout_width="100dp" android:id="@+id/ls" android:layout_height="100dp" android:src="https://www.songbingjia.com/android/@mipmap/menu_stick" /> < /com.gigamole.library.ShadowLayout>


final ShadowLayout shadowLayout = (ShadowLayout) findViewById(R.id.sl); shadowLayout.setIsShadowed(true); shadowLayout.setShadowAngle(45); //阴影角度 shadowLayout.setShadowRadius(20); //阴影半径 shadowLayout.setShadowDistance(30); //阴影距离 shadowLayout.setShadowColor(Color.DKGRAY); //阴影颜色


【android 给imageView,文字等加上阴影[记录]】 

    推荐阅读