最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

layer - How to Give Custom Shadow to Any View in Android? - Stack Overflow

programmeradmin1浏览0评论

i have triend this extension funcation but doest work for me pls help to get this done can some know about how to give shadow to Button on Textview in Android ?

 wrapInCustomShadow(
                            binding.btnWatch, R.color.c_77D4E1, resources
                        )

fun Int.toDp(resources: Resources): Float {
    return TypedValue.applyDimension(
        TypedValue.COMPLEX_UNIT_DIP, this.toFloat(), resources.displayMetrics
    )
}

fun wrapInCustomShadow(
    view: View, @ColorRes shadowColor: Int, resources: Resources
) {

    val shadowColorValue = ContextCompat.getColor(view.context, shadowColor)
    val shapeDrawable = ShapeDrawable()
    shapeDrawable.setTint(shadowColorValue)

    val shadowBlur = view.paddingBottom - 4.toDp(resources)
    shapeDrawable.paint.setShadowLayer(
        shadowBlur, 0f, 0f, getColorWithAlpha(shadowColorValue, 0.6f)
    )
    view.setLayerType(View.LAYER_TYPE_SOFTWARE, shapeDrawable.paint)

    val radius = 4.toDp(view.context.resources)
    val outerRadius = floatArrayOf(
        radius, radius, radius, radius, radius, radius, radius, radius
    )
    shapeDrawable.shape = RoundRectShape(outerRadius, null, null)

    val drawable = LayerDrawable(arrayOf<Drawable>(shapeDrawable))
    val inset = view.paddingBottom
    drawable.setLayerInset(
        0, inset, inset, inset, inset
    )
    view.background = drawable
}
发布评论

评论列表(0)

  1. 暂无评论