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,一经查实,立即删除!

相关文章

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

1主5从mysql数据库_MySQL主从复制虽好,能完美解决数据库单点问题吗?

一、单个数据库服务器的缺点数据库服务器存在单点问题;数据库服务器资源无法满足增长的读写请求;高峰时数据库连接数经常超过上限。二、如何解决单点问题增加额外的数据库服务器,组建数据库集群;同一集群中的数据库服务器需要具有…

惠普z6计算机进不去桌面,HP Z6 桌面工作站 | HP® HK 惠普香港

Intel、Thunderbolt 及 Xeon 均為 Intel Corporation 於美國及/或其他國家或地區的商標。Microsoft 及 Windows 為 Microsoft Corporation 於美國及/或其他國家或地區的註冊商標或商標。NVIDIA 是 NVIDIA Corporation 在美國及其他國家或地區的商標及/或註冊商標。USB Type-C™…

mysql定义条件和处理_mysql sql存储过程条件定义与处理

一、条件定义DECLARE condition_name CONDITION FOR condition_valecondition_value:sqlstate[value] sqldata_value |mysql教程_error_code二、条件处理DECLARE htype HANDLER FOR cond_value[...] sp_statementhandtype_value:sqlstate [value] saltate_value|contentname|sq…

长沙医学院学位计算机考试内容,湖南长沙医学院2017年9月计算机等级考试报名时间...

长沙医学院2017年下半年第49次全国计算机等级考试(以下简称NCRE)将于2017年9月23至25日举行。为做好本次考试报名及相关考务工作,现将有关事项通知如下:一、报名时间:2016年6月7日—2016年6月18日,逾期不接受任何理由的补报名。二…

mysql dnslog_dnslog小技巧

一、dnslog利用场景主要针对无回显的情况。Sql-BlindRCESSRFRFI(Remote File Inclusion)二、原理将dnslog平台中的特有字段payload带入目标发起dns请求,通过dns解析将请求后的关键信息组合成新的三级域名带出,在ns服务器的dns日志中显示出来。三、案例展…

2019哈佛计算机专业录取,2019哈佛大学早申请录取数据公布 录取率再降1个点仅为13.4%...

出结果了,出结果了,作为美国在全球范围内最负盛名的哈佛大学,与近日公布2019美国本科申请提前录取的相关数据。今年哈佛大学本科学院向6,968位在2023届提前录取轮次申请人中的935位发出了录取通知,申请录取率约为13.4%&#xff0c…

mysql中pi是什么意思_MySQL 基础知识与常用命令

MySQLMySQL是一种开放源代码的关系型数据库管理系统(RDBMS),MySQL数据库系统使用最常用的数据库管理语言--结构化查询语言(SQL)进行数据库管理。MySQL在过去由于性能高、成本低、可靠性好,已经成为最流行的开源数据库,因此被广泛地应用在Inte…

科幻计算机类小说,短篇科幻小说推荐 | 黄金时代的五部科幻杰作

编注:本文是少数派读书月「我读过的好书」征文活动的入围文章。本文仅代表作者本人观点,少数派对标题和排版略作调整。想了解如何参与本次读书征文,赢取各种丰厚奖品,你可以 点此查看 活动规则和奖品清单。文章包含五个故事的情节…

计算机中丢失msc,mscvr120.dll32位/64位版_修复计算机中丢失msvcr120.dll

mscvr120.dll32位/64位版_修复计算机中丢失msvcr120.dllmscvr120.dll是系统的非常重要的一个文件,相信很多的人都是遇到文件丢失的情况,这个时候就需要你在下载一个dll文件使用了!现在就为大家提供最新的dll文件下载,需要的可以看…

mysql解压缩版配置_MySQL 5.6 for Windows 解压缩版配置安装

1、MySQL安装文件分为两种,一种是msi格式的,一种是zip格式的。如果是msi格式的可以直接点击安装,按照它给出的安装提示进行安装(相信大家的英文可以看懂英文提示),一般MySQL将会安装在C:\Program Files\MySQL\MySQL Server 5.6 该…

计算机二级考试开考多久能出来,【计算机二级】明天就要开考了,你们准备好了吗?...

原标题:【计算机二级】明天就要开考了,你们准备好了吗?计算机二级考试马上要来了现在距离考试只有不到几个小时的时间了不知道各位同学准备的怎么样了呢?人有多大胆,复习拖多晚但这可不是什么好习惯奔赴“战场”之前先…

办公室中有一台计算机连接打印机,办公室就一个打印机,怎么让多个电脑一起用...

中小型企业的办公室一般只配一台打印机,每次打印东西都要把文件拷在U盘再转到连接打印机的那台电脑,很麻烦。那么怎么才能实现打印机多台电脑共享呢?以下把连接打印机的电脑成为“主电脑”,把需要的共享的电脑叫“客电脑”。1.设置…