Android 气泡自定义控件,带投影、指针效果

WX20210401-111526@2x.png

实际效果如上,可设置投影颜色以及投影范围,也可以设置是否显示指针和指针显示方向。

实现思路:通过Paint的setShadowLayer绘制投影效果,使用Path链接一个带角标和圆角的矩阵图形出来,最后再绘制在canvas上。

package com.cj.customwidget.widget

import android.content.Context
import android.graphics.*
import android.util.AttributeSet
import android.view.Gravity
import android.view.View
import android.view.ViewGroup
import android.view.ViewOutlineProvider
import android.widget.FrameLayout
import com.cj.customwidget.R
import com.cj.customwidget.ext.p

/**
 * File ShadowGroup.kt
 * Date 3/30/21
 * Author lucas
 * Introduction 带阴影和指针的shape view
 */
class ShadowGroup : FrameLayout {
    companion object {
        const val ORIENTATION_TOP = 0
        const val ORIENTATION_LEFT = 1
        const val ORIENTATION_RIGHT = 2
        const val ORIENTATION_BOTTOM = 3
    }

    constructor(context: Context) : super(context) {
        initView(context, null)
    }

    constructor(context: Context, attrs: AttributeSet?) : super(context, attrs) {
        initView(context, attrs)
    }

    constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(context, attrs, defStyleAttr) {
        initView(context, attrs)
    }

    private val shadowPaint = Paint()
    val path = Path()
    private val defPadding = 40f
    private var shadowDx = 0f
    private var shadowDy = 0f
    private var shadowRadius = 40f
    private var shadowMaxHeight = 0f//最大高度
    private var shadowColor = Color.parseColor("#22000000")
    private var bgColor = Color.WHITE//背景色
    private var indicatorOrientation = -1//指针方向
    private var indicatorMargin = 0.2f//指针偏移百分比(基于当前宽高)0~1

    private fun initView(context: Context, attrs: AttributeSet?) {
        attrs?.apply {
            val obtain = context.obtainStyledAttributes(attrs, R.styleable.ShadowGroup)
            shadowDx = obtain.getDimension(R.styleable.ShadowGroup_shadowDX, shadowDx)
            shadowDy = obtain.getDimension(R.styleable.ShadowGroup_shadowDY, shadowDy)
            shadowRadius = obtain.getDimension(R.styleable.ShadowGroup_shadowRadius, shadowRadius)
            shadowMaxHeight = obtain.getDimension(R.styleable.ShadowGroup_shadowMaxHeight, shadowMaxHeight)
            shadowColor = obtain.getColor(R.styleable.ShadowGroup_shadowColor, shadowColor)
            bgColor = obtain.getColor(R.styleable.ShadowGroup_shadowBgColor, bgColor)
            indicatorMargin = obtain.getFloat(R.styleable.ShadowGroup_shadowIndicatorMargin, indicatorMargin)
            indicatorOrientation =
                obtain.getInt(R.styleable.ShadowGroup_shadowIndicatorOrientation, indicatorOrientation)
            obtain.recycle()
        }
        //关闭硬件加速
        setLayerType(LAYER_TYPE_SOFTWARE, null)
        shadowPaint.isAntiAlias = true
        shadowPaint.style = Paint.Style.FILL
        shadowPaint.color = bgColor

        //设置padding防止子控件挡住投影
        setPadding(defPadding.toInt(), defPadding.toInt(), defPadding.toInt(), defPadding.toInt())
    }

    override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
        if (childCount > 1) {
            throw IllegalArgumentException("ShadowGroup 只允许有一个子控件。")
        }
        if (childCount == 1)
            (getChildAt(0).layoutParams as LayoutParams).gravity = Gravity.CENTER
        super.onMeasure(widthMeasureSpec, heightMeasureSpec)
    }

    override fun dispatchDraw(canvas: Canvas) {
        var indMargin = 0   //指针偏移量
        when (indicatorOrientation) {
            ORIENTATION_TOP, ORIENTATION_BOTTOM -> {
                indMargin = (indicatorMargin * width).toInt()
            }
            ORIENTATION_LEFT, ORIENTATION_RIGHT -> {
                indMargin = (indicatorMargin * height).toInt()
            }
        }

        //指针大小
        val indicatorH = defPadding * 0.4
        val indicatorW = defPadding * 0.8

        shadowPaint.setShadowLayer(shadowRadius, shadowDx, shadowDy, shadowColor)
        //绘制形状
        path.moveTo(defPadding, defPadding + shadowRadius)
        path.quadTo(defPadding, defPadding, defPadding + shadowRadius, defPadding)
        if (indicatorOrientation == ORIENTATION_TOP) {//top指针
            path.lineTo(indMargin - defPadding / 2, defPadding)
            path.lineTo((indMargin - defPadding / 2 + indicatorH).toFloat(), defPadding / 2)
            path.lineTo((indMargin - defPadding / 2 + indicatorW).toFloat(), defPadding)
        }
        path.lineTo(width - defPadding - shadowRadius, defPadding)
        path.quadTo(width - defPadding, defPadding, width - defPadding, defPadding + shadowRadius)
        if (indicatorOrientation == ORIENTATION_RIGHT) {//right指针
            path.lineTo(width - defPadding, indMargin - defPadding / 2)
            path.lineTo(width - defPadding/2, (indMargin - defPadding / 2 + indicatorH).toFloat())
            path.lineTo(width - defPadding, (indMargin - defPadding / 2 + indicatorW).toFloat())
        }
        path.lineTo(width - defPadding, height - defPadding - shadowRadius)
        path.quadTo(
            width - defPadding,
            height - defPadding,
            width - defPadding - shadowRadius,
            height - defPadding
        )
        if (indicatorOrientation == ORIENTATION_BOTTOM) {//bottom指针
            path.lineTo(indMargin - defPadding / 2, height - defPadding)
            path.lineTo((indMargin - defPadding / 2 + indicatorH).toFloat(), height - defPadding / 2)
            path.lineTo((indMargin - defPadding / 2 + indicatorW).toFloat(),height -  defPadding)
        }
        path.lineTo(defPadding + shadowRadius, height - defPadding)
        path.quadTo(defPadding, height - defPadding, defPadding, height - defPadding - shadowRadius)
        if (indicatorOrientation == ORIENTATION_LEFT) {//left指针
            path.lineTo( defPadding, indMargin - defPadding / 2)
            path.lineTo(defPadding/2, (indMargin - defPadding / 2 + indicatorH).toFloat())
            path.lineTo( defPadding, (indMargin - defPadding / 2 + indicatorW).toFloat())
        }
        path.lineTo(defPadding, defPadding + shadowRadius)
        canvas.drawPath(path, shadowPaint)
        super.dispatchDraw(canvas)
    }
}

使用方式:

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#fff"
    tools:context=".page.ShadowActivity">

        <com.cj.customwidget.widget.ShadowGroup
            android:id="@+id/v_shadow"
            android:layout_gravity="center"
            android:layout_width="200dp"
            app:shadowIndicatorMargin="0.5"
            app:shadowIndicatorOrientation="left"
            android:layout_height="wrap_content">

            <LinearLayout
                android:id="@+id/v_content"
                android:layout_margin="5dp"
                android:orientation="vertical"
                android:src="@mipmap/ic_launcher"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content">


                <TextView
                    android:id="@+id/v_list"
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:text="a b c d e f g h g f e d c b a"
                    app:layout_constraintLeft_toLeftOf="parent"
                    app:layout_constraintRight_toRightOf="parent"
                    app:layout_constraintTop_toTopOf="parent" />


                <TextView
                    android:id="@+id/v_confirm"
                    android:layout_width="match_parent"
                    android:layout_height="42dp"
                    android:gravity="center"
                    android:text="confirm"
                    android:textSize="15sp"
                    android:textStyle="bold"
                    app:layout_constraintLeft_toLeftOf="parent"
                    app:layout_constraintRight_toRightOf="parent"
                    app:layout_constraintTop_toBottomOf="@id/v_list" />
            </LinearLayout>
        </com.cj.customwidget.widget.ShadowGroup>

</FrameLayout>

可配置属性:

  <declare-styleable name="ShadowGroup">
        <attr name="shadowDX" format="dimension" />
        <attr name="shadowDY" format="dimension" />
        <attr name="shadowColor" format="color" />
        <attr name="shadowRadius" format="dimension" />
        <attr name="shadowMaxHeight" format="dimension" />
        <attr name="shadowBgColor" format="color" />
        <attr name="shadowIndicatorMargin" format="float" />
        <attr name="shadowIndicatorOrientation" format="enum">
            <enum name="top" value="0" />
            <enum name="left" value="1" />
            <enum name="right" value="2" />
            <enum name="bottom" value="3" />
        </attr>
    </declare-styleable>

源码地址:https://github.com/LucasDevelop/CustomView。中的(Shadow)部分

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 216,372评论 6 498
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 92,368评论 3 392
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 162,415评论 0 353
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 58,157评论 1 292
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 67,171评论 6 388
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 51,125评论 1 297
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 40,028评论 3 417
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,887评论 0 274
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 45,310评论 1 310
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,533评论 2 332
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,690评论 1 348
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 35,411评论 5 343
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 41,004评论 3 325
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,659评论 0 22
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,812评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,693评论 2 368
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,577评论 2 353

推荐阅读更多精彩内容