android 圆角边框边框渐变,支持边框、圆角、渐变色、透明度的GradientButton

最近在项目中发现好多Button背景颜色相同,但圆角大小不等的Button,这样就得写一大堆的shape或者selector,不便于管理及后期维护,于是乎变想能不能写一个支持边框、圆角、渐变色、透明度的万用Button呢。为了能够兼容button自带的属性,当然继承自AppCompatButton是最好的,剩下的就需要考虑selector各状态在我们自定义Button中怎么获取与渲染了。最开始想到,自己draw?不过这样有点low,需要我们处理一大堆的状态,譬如:state_pressed、state_enabled...

那有没有更好的实现方式呢?我们把这些状态交由系统管理呢?在一顿寻找后,发现还真有呢,真是踏破铁鞋无觅处,得来全不费工夫--------GradientDrawable,没错就是它,一个Drawable的子类。我们看看它的描叙:

A Drawable with a color gradient for buttons, backgrounds, etc.

并且通过查看它提供的相应方法,它不仅能替我们管理好各种state,也支持边框绘制、圆角设置,渐变色当然更不用说了,看它的名字就知道啦。好了废话就不多说了,下面就是GradientButton的代码实现过程:

const val TOP_BOTTOM = 0

const val TR_BL = 1

const val RIGHT_LEFT = 2

const val BR_TL = 3

const val BOTTOM_TOP = 4

const val BL_TR = 5

const val LEFT_RIGHT = 6

const val TL_BR = 7

class GradientButton(context: Context, attrs: AttributeSet? = null) :

AppCompatButton(context, attrs, android.R.attr.borderlessButtonStyle) {

@IntDef(TOP_BOTTOM, TR_BL, RIGHT_LEFT, BR_TL, BOTTOM_TOP, BL_TR, LEFT_RIGHT, TL_BR)

@kotlin.annotation.Retention(AnnotationRetention.SOURCE)

annotation class Orientation

private val radii by lazy { FloatArray(8) }

private var mBackgroundDrawable: GradientButtonDrawable? = null

private var mPaddingLeft = 0.0f

private var mPaddingTop = 0.0f

private var mPaddingRight = 0.0f

private var mPaddingBottom = 0.0f

private var mMinWidth = 0

private var mMinHeight = 0

init {

val stateListDrawable = StateListDrawable()

attrs?.also { it ->

context.obtainStyledAttributes(it, R.styleable.GradientButton).apply {

val borderColorStateList = getColorStateList(R.styleable.GradientButton_border_color)

val borderWidth = getDimension(R.styleable.GradientButton_border_width, 0.0f)

val isRadiusAdjustBounds = getBoolean(R.styleable.GradientButton_is_radius_adjust_bounds, false)

val radius = getDimension(R.styleable.GradientButton_all_radius, 0.0f)

val topLeftRadius = getDimension(R.styleable.GradientButton_top_left_radius, 0.0f)

val topRightRadius = getDimension(R.styleable.GradientButton_top_right_radius, 0.0f)

val bottomLeftRadius = getDimension(R.styleable.GradientButton_bottom_left_radius, 0.0f)

val bottomRightRadius = getDimension(R.styleable.GradientButton_bottom_right_radius, 0.0f)

val backgroundColorStateList = getColorStateList(R.styleable.GradientButton_background_color)

val orientation = getInt(R.styleable.GradientButton_orientation, LEFT_RIGHT)

val startBackgroundColorStateList =

getColorStateList(R.styleable.GradientButton_start_background_color)

val centerBackgroundColorStateList =

getColorStateList(R.styleable.GradientButton_center_background_color)

val endBackgroundColorStateList = getColorStateList(R.styleable.GradientButton_end_background_color)

val backgroundAlpha = getFraction(R.styleable.GradientButton_background_alpha, 1, 1, 0.0f)

val padding = getDimension(R.styleable.GradientButton_padding, -1.0f)

mPaddingLeft = (if (padding != -1.0f) {

padding

} else {

getDimension(R.styleable.GradientButton_padding_left, mPaddingLeft)

})

mPaddingTop = (if (padding != -1.0f) {

padding

} else {

getDimension(R.styleable.GradientButton_padding_top, mPaddingTop)

})

mPaddingRight = (if (padding != -1.0f) {

padding

} else {

getDimension(R.styleable.GradientButton_padding_right, mPaddingRight)

})

mPaddingBottom = (if (padding != -1.0f) {

padding

} else {

getDimension(R.styleable.GradientButton_padding_bottom, mPaddingBottom)

})

mMinWidth = getDimensionPixelSize(R.styleable.GradientButton_min_width, 0)

mMinHeight = getDimensionPixelSize(R.styleable.GradientButton_min_height, 0)

mBackgroundDrawable = createBackgroundDrawable(getOrientation(orientation))

if (borderWidth > 0.0f || backgroundColorStateList != null || (startBackgroundColorStateList != null && endBackgroundColorStateList != null)) {

setTopLeftRadius(topLeftRadius)

setTopRightRadius(topRightRadius)

setBottomLeftRadius(bottomLeftRadius)

setBottomRightRadius(bottomRightRadius)

setRadius(radius)

setBorder(borderWidth, borderColorStateList)

setBackgroundColorStateList(backgroundColorStateList)

setGradientBackgroundColorStateList(

startBackgroundColorStateList,

centerBackgroundColorStateList,

endBackgroundColorStateList

)

setBackgroundAlpha(backgroundAlpha)

mBackgroundDrawable?.setRadius(isRadiusAdjustBounds, radii)

}

recycle()

}

} ?: also {

mBackgroundDrawable = createBackgroundDrawable(getOrientation(LEFT_RIGHT))

}

mBackgroundDrawable?.also {

stateListDrawable.addState(it.state, mBackgroundDrawable)

setGradientDrawable(stateListDrawable)

}

setPadding(mPaddingLeft.toInt(), mPaddingTop.toInt(), mPaddingRight.toInt(), mPaddingBottom.toInt())

minWidth = mMinWidth

minimumWidth = mMinWidth

minHeight = mMinHeight

minimumHeight = mMinHeight

}

private fun setGradientDrawable(stateListDrawable: StateListDrawable) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {

background = stateListDrawable

} else {

setBackgroundDrawable(stateListDrawable)

}

}

/**

* 设置渐变色方向

*/

fun setOrientation(@Orientation orientation: Int) {

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {

mBackgroundDrawable?.orientation = getOrientation(orientation)

}

}

fun setBackgroundAlpha(@FloatRange(from = 0.0, to = MAX_VALUE) alpha: Float) {

mBackgroundDrawable?.alpha = ((1.0f - alpha) * 255).toInt()

}

/**

* 渐变色设置

*/

fun setGradientBackgroundColorStateList(

startBackgroundColorStateList: ColorStateList?,

centerBackgroundColorStateList: ColorStateList? = null,

endBackgroundColorStateList: ColorStateList?

) {

mBackgroundDrawable?.setGradientBackgroundColorStateList(

startBackgroundColorStateList,

centerBackgroundColorStateList,

endBackgroundColorStateList

)

}

fun setBackgroundColorStateList(backgroundColorStateList: ColorStateList?) {

mBackgroundDrawable?.setBackgroundColorStateList(backgroundColorStateList)

}

fun setBackgroundColorRes(@ColorRes backgroundColor: Int) {

setBackgroundColorRes(backgroundColor, backgroundColor, backgroundColor)

}

fun setBackgroundColorRes(@ColorRes startBackgroundColor: Int, @ColorRes centerBackgroundColor: Int?, @ColorRes endBackgroundColor: Int) {

val centerBackgroundColorStateList = centerBackgroundColor?.let {

ColorStateList(arrayOf(intArrayOf(android.R.attr.state_enabled)), intArrayOf(context.resources.getColor(it)))

}

mBackgroundDrawable?.setGradientBackgroundColorStateList(ColorStateList(arrayOf(intArrayOf(android.R.attr.state_enabled)),

intArrayOf(context.resources.getColor(startBackgroundColor))),

centerBackgroundColorStateList,

ColorStateList(arrayOf(intArrayOf(android.R.attr.state_enabled)),

intArrayOf(context.resources.getColor(endBackgroundColor))))

}

private fun getOrientation(@Orientation orientation: Int): GradientDrawable.Orientation {

return when (orientation) {

TOP_BOTTOM -> GradientDrawable.Orientation.TOP_BOTTOM

TR_BL -> GradientDrawable.Orientation.TR_BL

RIGHT_LEFT -> GradientDrawable.Orientation.RIGHT_LEFT

BR_TL -> GradientDrawable.Orientation.BR_TL

BOTTOM_TOP -> GradientDrawable.Orientation.BOTTOM_TOP

BL_TR -> GradientDrawable.Orientation.BL_TR

TL_BR -> GradientDrawable.Orientation.TL_BR

else -> GradientDrawable.Orientation.LEFT_RIGHT

}

}

private fun createBackgroundDrawable(orientation: GradientDrawable.Orientation) =

GradientButtonDrawable(orientation, null)

fun setBorder(@FloatRange(from = 0.0, to = MAX_VALUE) borderWidth: Float, borderColorStateList: ColorStateList?) {

mBackgroundDrawable?.setBorder(borderWidth, borderColorStateList)

}

fun setBorder(@FloatRange(from = 0.0, to = MAX_VALUE) borderWidth: Float, @ColorRes borderColorRes: Int){

setBorder(borderWidth, ColorStateList(arrayOf(intArrayOf(android.R.attr.state_enabled)),

intArrayOf(context.resources.getColor(borderColorRes))))

}

/**

* 设置圆角自适应最小边

*/

fun setRadiusAdjustBounds(isRadiusAdjustBounds: Boolean) {

mBackgroundDrawable?.setRadius(isRadiusAdjustBounds, null)

}

fun setRadius(@FloatRange(from = 0.0, to = MAX_VALUE) radius: Float) {

if (radius > 0.0f) {

for (index in radii.indices) {

radii[index] = radius

}

mBackgroundDrawable?.setRadius(radius = radii)

}

}

fun setTopLeftRadius(@FloatRange(from = 0.0, to = MAX_VALUE) topLeftRadius: Float) {

if (topLeftRadius > 0.0f) {

radii[0] = topLeftRadius

radii[1] = topLeftRadius

mBackgroundDrawable?.setRadius(radius = radii)

}

}

fun setTopRightRadius(@FloatRange(from = 0.0, to = MAX_VALUE) topRightRadius: Float) {

if (topRightRadius > 0.0f) {

radii[2] = topRightRadius

radii[3] = topRightRadius

mBackgroundDrawable?.setRadius(radius = radii)

}

}

fun setBottomLeftRadius(@FloatRange(from = 0.0, to = MAX_VALUE) bottomLeftRadius: Float) {

if (bottomLeftRadius > 0.0f) {

radii[6] = bottomLeftRadius

radii[7] = bottomLeftRadius

mBackgroundDrawable?.setRadius(radius = radii)

}

}

fun setBottomRightRadius(@FloatRange(from = 0.0, to = MAX_VALUE) bottomRightRadius: Float) {

if (bottomRightRadius > 0.0f) {

radii[4] = bottomRightRadius

radii[5] = bottomRightRadius

mBackgroundDrawable?.setRadius(radius = radii)

}

}

}

internal class GradientButtonDrawable(orientation: Orientation = Orientation.LEFT_RIGHT, @ColorInt colors: IntArray?) : GradientDrawable(orientation, colors) {

private var mBackgroundColorStateList: ColorStateList? = null

private var mStartBackgroundColorStateList: ColorStateList? = null

private var mCenterBackgroundColorStateList: ColorStateList? = null

private var mEndBackgroundColorStateList: ColorStateList? = null

private var mBorderColorStateList: ColorStateList? = null

private var mBorderWidth = 0.0f

private var mIsRadiusAdjustBounds = false

internal fun setBackgroundColorStateList(backgroundColorStateList: ColorStateList?) {

mBackgroundColorStateList = backgroundColorStateList

mStartBackgroundColorStateList = null

mCenterBackgroundColorStateList = null

mEndBackgroundColorStateList = null

setBackgroundColor()

}

internal fun setGradientBackgroundColorStateList(startBackgroundColorStateList: ColorStateList?, centerBackgroundColorStateList: ColorStateList?, endBackgroundColorStateList: ColorStateList?) {

mBackgroundColorStateList = null

mStartBackgroundColorStateList = startBackgroundColorStateList

mCenterBackgroundColorStateList = centerBackgroundColorStateList

mEndBackgroundColorStateList = endBackgroundColorStateList

setBackgroundColor()

}

internal fun setBorder(@FloatRange(from = 0.0, to = MAX_VALUE) borderWidth: Float = 0.0f, borderColorStateList: ColorStateList?) {

mBorderWidth = borderWidth

mBorderColorStateList = borderColorStateList

setBorderColor()

}

internal fun setRadius(radiusAdjustBounds: Boolean = false, radius: FloatArray?) {

mIsRadiusAdjustBounds = radiusAdjustBounds

if (!mIsRadiusAdjustBounds) {

cornerRadii = radius

}

}

private fun getColorForState(colorStateList: ColorStateList?): Int {

return colorStateList?.getColorForState(state, 0) ?: 0

}

private fun setBackgroundColor() {

mBackgroundColorStateList?.also {

if (hasNativeStateListAPI()) {

color = mBackgroundColorStateList

} else {

setColor(getColorForState(mBackgroundColorStateList))

}

} ?: also {

if (mStartBackgroundColorStateList != null && mEndBackgroundColorStateList != null) {

val colors = IntArray(mCenterBackgroundColorStateList?.let { 3 } ?: let { 2 })

colors[0] = getColorForState(mStartBackgroundColorStateList)

mCenterBackgroundColorStateList?.also {

colors[1] = getColorForState(mCenterBackgroundColorStateList)

colors[2] = getColorForState(mEndBackgroundColorStateList)

} ?: also {

colors[1] = getColorForState(mEndBackgroundColorStateList)

}

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.JELLY_BEAN) {

setColors(colors)

} else {

setColor(colors[0])

}

}

}

}

private fun setBorderColor() {

mBorderColorStateList?.also {

if (mBorderWidth > 0.0f) {

if (hasNativeStateListAPI()) {

setStroke(mBorderWidth.toInt(), mBorderColorStateList)

} else {

setStroke(mBorderWidth.toInt(), getColorForState(mBorderColorStateList))

}

}

}

}

private fun hasNativeStateListAPI() = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP

override fun onStateChange(stateSet: IntArray?): Boolean {

return super.onStateChange(stateSet).let {

if (mBorderColorStateList != null || mBackgroundColorStateList != null || mStartBackgroundColorStateList != null) {

setBorderColor()

setBackgroundColor()

true

} else {

it

}

}

}

override fun onBoundsChange(r: Rect?) {

super.onBoundsChange(r)

r?.also {

if (mIsRadiusAdjustBounds) {

cornerRadius = min(it.width() / 2.0f, it.height() / 2.0f)

}

}

}

}

就是这么简单,我们只需要提供相应的color选择器,或者背景色值即可完成我们平时需要使用一大堆shape或selector才能实现的效果,最后再看看效果图吧,正所谓无图无真相,嘿嘿

bda46b5b3a0e

gradientbutton.png

好了,今天的收获就是这么多O(∩_∩)O

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/560595.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

(斜率,点和线段)zzuli1196数星星(二)

题目描述 一天,小明坐在院子里数星星,Gardon就出了个难题给他,让他数数天上的星星最多有多少个是在同一条直线上的。天上的星星太多了,小明马上就看花了眼,你能写个程序来帮他计算么? 输入 首先输入一个整…

鸿蒙ide如何运行,深入浅析华为鸿蒙IDE安装与Hello World

一、系统安装1. 到官网下载HUAWEI DevEco Studio2. 安装二、创建项目创建项目目前还没有手机选项,所以我先选择一个电视:IDE的环境看起来和idea差不多,应该比较容易上手。从“关于”里也可以看到,确实是基于IDEA开源版本开发的。我…

springboot 上传文件解析入库_SpringBoot + easyexcel + WebUploader 实现文件上传并解析

1. WebUploader的使用,引入css和js,css其实没什么用:2. 定义上传框:选择文件开始上传3.相关jquery:// 文件上传jQuery(function() {var $ jQuery,$list $(#thelist),$btn $(#ctlBtn),state pending,uploader;uploa…

中快捷搜索_同事用1分钟,我用半小时,原来是因为这8个Word快捷键,秒杀一切办公技巧...

同事用1分钟,我用半小时,这8个Word快捷键,秒杀一切办公技巧​mp.weixin.qq.com文|王羽卒今天给小伙伴们分享几个实用又有效的快捷键,帮助快速完成工作,同事用了半小时,你1分钟就能解决哟&#x…

动态规划理论基础

(采用维特根斯坦的表述方式) 1.达成目的过程可以由不同阶段组成 2.阶段由达成目的的条件确定 (注:规定每一次走一步,第一步就是一个阶段) 3.每个阶段由不同的状态组成 4.状态是阶段中可能面临的所有情况 (注:第一步落脚点可能有多个&am…

荣耀x10max能不能升级为鸿蒙,荣耀终于放出大招!4部荣耀旗舰可升级鸿蒙,网友:终于等到了...

4月24~26日,华为将召开开发者大会,届时手机使用的鸿蒙系统将正式上线,华为和部分荣耀手机将会首先支持。其实,早在2月22日的华为Mate X2的发布会上,余承东就说过4月发布鸿蒙OS。华为并不想推出鸿蒙系统,如果…

android 7.0新增控件,自定义Android控件,封装Arcgis for Android测距测面积工具控件

控件的功能包括,测距、测面积、撤销、恢复、清除、完成六个功能。测距:在地图上绘制线段进行长度测量测面积:在地图上绘制一个面,进行面积测量撤销:撤销到上一步绘制,只能撤销未完成的测量恢复:…

cpython需要另外安装吗_在windows环境下安装和使用Python(CPython)

在windows环境下安装和使用Python(CPython)一、下载1.选择Python版本打开Windows版Python官网下载链接,选择Latest Python 3 Release - Python 3.8.3 。(推荐选择Python3.x,也可以选择其他版本)2.选择需要的Python类型在File中选择Windows x86-64 execut…

python模块:命名空间与重载模块

文章目录模块命名空间&#xff1a;重载模块&#xff1a;#module2.py print(starting to load...) import sys name42 def func():pass class klass:pass print(done loading.) >>> import module2 starting to load... done loading. >>> module2.sys <mo…

哪个html在大部分浏览器下是不隐藏的,前端浏览器兼容性问题总结

市场上浏览器种类很多&#xff0c;不同浏览器的内核也不尽相同&#xff0c;所以各个浏览器对网页的解析存在一定的差异。浏览器内核主要分为两种&#xff0c;一是渲染引擎&#xff0c;另一个是js引擎&#xff0c;内核更加倾向于说渲染引擎。常见的浏览器内核可以分四种&#xf…

多媒体分析与理解_如何设计一个出色的数字多媒体展厅?

展厅设计方案是了解每个多媒体设备的应用方法&#xff0c;那么如何让设备跟展厅结合一起&#xff0c;展示出我们想要的科技效果&#xff0c;核心就是用户体验度。今天华南数字科技的小编就为您介绍下数字多媒体展厅对用户体验方面的几个重点要素。1、细节展示不论多前卫的多媒体…

python模块:运行机制与编写方法

文章目录python模块的导入机制&#xff1a;python模块编写方法&#xff1a;#mod1: def printer(x):print(x) #mod2: print(hello) n1 #mod3: x1 y[2,3] >>> import mod1 >>> mod1.printer(hello) hello >>> from mod1 import printer >>> …

html标签a+hover事件,触发a标签hover事件,如何在元素底部显示蓝色底块_html/css_WEB-ITnose...

回复讨论(解决方案)你可以用li:hover border-bottom:3px solid blue;background-position:bottom; //是针对背景图片的位置,不是背景颜色height: 1px;//这里的高度为什么是1px?有什么目的&#xff1f;width:45px;可以采用1楼的做法&#xff0c;设置底部边框还有给你个动画效果…

微信小程序 界面从右边滑出_微信小程序MUI侧滑导航菜单示例(Popup弹出式,左侧不动,右侧滑动)...

本文实例讲述了微信小程序MUI侧滑导航菜单。分享给大家供大家参考&#xff0c;具体如下&#xff1a;实现的目标—-YDUI的Popup组件点击列表图标—-左侧的菜单栏显示—-点击关闭按钮或者右侧的遮罩层—-左侧菜单栏关闭实现方案1&#xff1a;左侧菜单和右侧展示页面分为上下两层w…

python函数:函数参数,常用函数工具

文章目录python函数之参数python的lambda表达式&#xff1a;函数工具&#xff1a;map&#xff0c;filter&#xff0c;reduce>>> def f(a):a99>>> b88 >>> f(b) >>> print(b) 88 >>> def ch(a,b):a2b[0]eoe>>> x1 >&g…

gradient设置上下渐变_图解CSS: CSS渐变

CSS的渐变主要分布在 conic-gradient()和repeating-conic-gradient()两个属性。在CSS中&#xff0c;CSS的渐变相当于图像&#xff0c;我们可以使用线性渐变(linear-gradient()和repeating-linear-gradient())、径向渐变(radial-gradient()和repeating-radial-gradient())和锥形…

2021泗阳致远中学高考成绩查询,2021高考成绩什么时候发布?可通过哪些途径查询?...

3、安徽省高考成绩预计将于6月23日公布各批次录取分数线和高考成绩&#xff0c;考生可通过安徽省教育招生考试院自行查分&#xff1b;4、湖南高考成绩将于6月25日左右公布&#xff0c;本科不再分一二三批&#xff0c;考生可通过湖南教育政务网、湖南省普通高校招生考试考生综合…

python函数之作用域

python函数之作用域&#xff1a; >>> def times(x,y):return x*y>>> times(2,4) 8 >>> times(3.1,4) 12.4 >>> times(eop,4) eopeopeopeop >>> def inset(s1,s2):res[]for x in s1:if x in s2:res.append(x)return res>>&…

mysql数据库的字符集_mysql数据库中字符集乱码问题原因及解决

前言有的时候我们在查看数据库数据时&#xff0c;会看到乱码。实际上&#xff0c;无论何种数据库只要出现乱码问题&#xff0c;这大多是由于数据库字符集设定的问题。下面我们就介绍一下&#xff0c;数据库的字符集的设定及乱码问题的解决。mysql数据库的字符集直白的说&#x…

加强计算机网络应用,如何加强计算机网络管理技术创新应用

车煜铭摘要&#xff1a;在社会的发展当中&#xff0c;计算机网络被普遍运用&#xff0c;因此&#xff0c;令人们对计算机网络的依赖性越来越大。长久以来&#xff0c;大部分计算机用户渴望获得一个稳定的网络氛围。为了符合这一需求&#xff0c;计算机网络管理系统随之诞生。其…