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

Posted gali

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android 给imageView,文字等加上阴影[记录]相关的知识,希望对你有一定的参考价值。

1.链接

https://github.com/Devlight/ShadowLayout

  

2.效果

 

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="@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,文字等加上阴影[记录]的主要内容,如果未能解决你的问题,请参考以下文章

android开发的textview和imageview有啥区别吗?

android 怎么在一个界面实现图片+文字+图片+文字

android中,如果使用imageButton可以在drawable 中设置一个selector,但是imageView设置不起作用,怎么办?

在android中的xml里怎么布置在一个图片上显示文字

ImageView通过代码放大android

android - 如何给Imageview 设置水波纹效果