Posts

Showing posts from April, 2022

Shadow of ImageView in android

 Shadow of ImageView in android Gradle dependencies { compile 'com.yinglan.shadowimageview:shadowimageview:1.0.4' } In layout <com.yinglan.shadowimageview.ShadowImageView android:id="@+id/shadow" android:layout_width="300dp" android:layout_height="300dp" app:shadowRound="20dp" app:shadowSrc="@mipmap/lotus" app:shadowColor="@color/colorAccent"/> Set Picture shadow.setImageResource(resID); shadow.setImageDrawable(drawable); shadow.setImageBitmap(bitmap); Set the picture radius shadow.setImageRadius(radius); Set the shadow color of the image shadow.setImageShadowColor(color);