Android 自定义Button

一、前言:

image.png

1、使用:

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:background="#fff"
            android:gravity="center_vertical"
            android:layout_marginLeft="@dimen/ui_dp15"
            android:layout_marginRight="@dimen/ui_dp15"
            android:orientation="horizontal"
            >

            <com.weifeng.hobby.commonui.views.HobbyShapeTextView
                android:id="@+id/follow"
                android:layout_width="0dp"
                android:layout_height="40dp"
                android:layout_weight="1"
                android:text="取消"
                android:textColor="#333333"
                android:textSize="16sp"
                android:textStyle="bold"
                app:cornersRadius="20dp"
                app:gradientNormalEndColor="#00000000"
                app:gradientNormalStartColor="#00000000"
                app:shape="rectangle"
                app:tv_strokeColor="#333333"
                app:tv_strokeWidth="1dp" />

            <View
                android:layout_width="21dp"
                android:layout_height="0dp" />

            <com.weifeng.hobby.commonui.views.HobbyShapeTextView
                android:id="@+id/chat"
                android:layout_width="0dp"
                android:layout_height="40dp"
                android:layout_weight="1"
                android:text="确定"
                android:textColor="@color/cui_color_white"
                android:textSize="16sp"
                android:textStyle="bold"
                app:cornersRadius="20dp"
                app:gradientNormalEndColor="@color/ui_black"
                app:gradientNormalStartColor="@color/ui_black"
                app:shape="rectangle" />

        </LinearLayout>

2、控件:

package com.weifeng.hobby.commonui.views

import android.content.Context
import android.graphics.Canvas
import android.graphics.Color
import android.graphics.drawable.GradientDrawable
import android.graphics.drawable.StateListDrawable
import android.util.AttributeSet
import android.view.Gravity
import androidx.appcompat.widget.AppCompatTextView
import com.weifeng.hobby.commonui.R

/**
 * description:
 *
 * @date 2022/3/29
 */
open class HobbyShapeTextView : AppCompatTextView {
    /***
     * Rect angel
     */
    val SHAPE_RECTANGEL = 0

    /***
     * 形状
     */
    var shape = 0

    /***
     * 按压基础颜色
     */
    var solidNormalColor = 0

    /***
     * 按压颜色
     */
    var solidPressedColor = 0

    /***
     * 圆
     */
    var cornersRadius = 0f

    /***
     * 左上
     */
    var cornersTopLeft = 0f

    /***
     * 右上
     */
    var cornersTopRight = 0f

    /***
     * 左下
     */
    var cornersBottomLeft = 0f

    /***
     * 右下
     */
    var cornersBottomRight = 0f

    /***
     * 渐变颜色属性
     */
    var gradientNormalStartColor = 0

    /***
     * 渐变颜色属性
     */
    var gradientNormalCenterColor = 0

    /***
     * 渐变颜色属性
     */
    var gradientNormalEndColor = 0

    /***
     * 按压颜色属性
     */
    var gradientPressedStartColor = 0

    /***
     * 按压颜色属性
     */
    var gradientPressedCenterColor = 0

    /***
     * 按压结束颜色
     */
    var gradientPressedEndColor = 0

    /***
     * 按压颜色属性
     */
    var gradientOrientation = 0

    /***
     *
     */
    var strokeWidth = 0f

    /***
     *
     */
    var strokeColor = 0

    /***
     * 默认颜色
     */
    val defaultColor = Color.parseColor("#00000000")

    lateinit var orientations: Array<GradientDrawable.Orientation>

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

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

        initView(attrs)
    }

    private fun initView(attrs: AttributeSet?) {

        val array = context.obtainStyledAttributes(attrs, R.styleable.ShapeTextView)
        shape = array.getInteger(R.styleable.ShapeTextView_shape, SHAPE_RECTANGEL)
        solidNormalColor = array.getColor(R.styleable.ShapeTextView_solidNormal, defaultColor)
        solidPressedColor = array.getColor(R.styleable.ShapeTextView_solidPressed, defaultColor)
        cornersRadius = array.getDimension(R.styleable.ShapeTextView_cornersRadius, 0f)
        cornersTopLeft = array.getDimension(R.styleable.ShapeTextView_cornerTopLeft, 0f)
        cornersTopRight = array.getDimension(R.styleable.ShapeTextView_cornerTopRight, 0f)
        cornersBottomLeft = array.getDimension(R.styleable.ShapeTextView_cornerBottomLeft, 0f)
        cornersBottomRight = array.getDimension(R.styleable.ShapeTextView_cornerBottomRight, 0f)
        strokeWidth = array.getDimension(R.styleable.ShapeTextView_tv_strokeWidth, 0f)
        strokeColor = array.getColor(R.styleable.ShapeTextView_tv_strokeColor, defaultColor)
        gradientNormalStartColor = array.getColor(R.styleable.ShapeTextView_gradientNormalStartColor, defaultColor)
        gradientNormalCenterColor = array.getColor(R.styleable.ShapeTextView_gradientNormalCenterColor, defaultColor)
        gradientNormalEndColor = array.getColor(R.styleable.ShapeTextView_gradientNormalEndColor, defaultColor)
        gradientPressedStartColor = array.getColor(R.styleable.ShapeTextView_gradientPressedStartColor, defaultColor)
        gradientPressedCenterColor = array.getColor(R.styleable.ShapeTextView_gradientPressedCenterColor, defaultColor)
        gradientPressedEndColor = array.getColor(R.styleable.ShapeTextView_gradientPressedEndColor, defaultColor)
        val orientationArray = context.obtainStyledAttributes(attrs, R.styleable.ShapeTextView)
        gradientOrientation = orientationArray.getInteger(R.styleable.ShapeTextView_gradientOrientation, 6)
        array.recycle()
        orientations = arrayOf(
                GradientDrawable.Orientation.TOP_BOTTOM,
                GradientDrawable.Orientation.TR_BL,
                GradientDrawable.Orientation.RIGHT_LEFT,
                GradientDrawable.Orientation.BR_TL,
                GradientDrawable.Orientation.BOTTOM_TOP,
                GradientDrawable.Orientation.BL_TR,
                GradientDrawable.Orientation.LEFT_RIGHT,
                GradientDrawable.Orientation.TL_BR
        )
    }

    override fun onDraw(canvas: Canvas?) {
        super.onDraw(canvas)
        setShape()
    }

    open fun setShape() {
        setGravity(Gravity.CENTER)
        setClickable(true)
        // normal state
        val drawableNormal = GradientDrawable()
        // 设置Shape
        drawableNormal.shape = shape
        // 设置圆角半径
        drawableNormal.cornerRadius = cornersRadius
        // 圆角半径(每个圆角半径的值)
        if (cornersRadius == 0f) {
            drawableNormal.cornerRadii = floatArrayOf(
                    cornersTopLeft, cornersTopLeft,
                    cornersTopRight, cornersTopRight,
                    cornersBottomRight, cornersBottomRight,
                    cornersBottomLeft, cornersBottomLeft)
        }
        //描边的宽度和颜色
        drawableNormal.setStroke(strokeWidth.toInt(), strokeColor)
        //设置填充色
        if (solidNormalColor != defaultColor) {
            drawableNormal.setColor(solidNormalColor)
        } else {
//            设置渐变色
            var gradientColors: IntArray
            if (gradientNormalStartColor != defaultColor && gradientNormalEndColor != defaultColor) {
                gradientColors = intArrayOf(gradientNormalStartColor, gradientNormalEndColor)
                if (gradientNormalCenterColor != defaultColor) {
                    gradientColors = intArrayOf(gradientNormalStartColor, gradientNormalCenterColor, gradientNormalEndColor)
                }
                drawableNormal.colors = gradientColors
                drawableNormal.orientation = orientations[gradientOrientation]
            } else {
                drawableNormal.setColor(solidNormalColor)
            }
        }


        // pressed state
        val drawablePressed = GradientDrawable()
        drawablePressed.shape = shape
        drawablePressed.cornerRadius = cornersRadius
        if (cornersRadius == 0f) {
            drawablePressed.cornerRadii = floatArrayOf(
                    cornersTopLeft, cornersTopLeft,
                    cornersTopRight, cornersTopRight,
                    cornersBottomRight, cornersBottomRight,
                    cornersBottomLeft, cornersBottomLeft)
        }
        drawablePressed.setStroke(strokeWidth.toInt(), strokeColor)
        drawablePressed.setColor(solidPressedColor)

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

推荐阅读更多精彩内容