1200字范文,内容丰富有趣,写作的好帮手!
1200字范文 > 安卓点击按钮实现缩放效果 点击完成恢复原状~~

安卓点击按钮实现缩放效果 点击完成恢复原状~~

时间:2021-03-13 16:15:00

相关推荐

安卓点击按钮实现缩放效果 点击完成恢复原状~~

给View添加一个扩展函数~~~

直接上代码,里面有注释,不懂的可以评论提问题哦~~~~

import android.annotation.SuppressLintimport android.view.MotionEventimport android.view.View/*** 添加点击缩放效果*/// 消除警告@SuppressLint("ClickableViewAccessibility")// 参数为:缩小比例、缩小的变化时间fun View.addClickScale(scale: Float = 0.9f, duration: Long = 150) {this.setOnTouchListener { _, event ->when (event.action) {MotionEvent.ACTION_DOWN -> {this.animate().scaleX(scale).scaleY(scale).setDuration(duration).start()}MotionEvent.ACTION_UP, MotionEvent.ACTION_CANCEL -> {this.animate().scaleX(1f).scaleY(1f).setDuration(duration).start()}}this.onTouchEvent(event)}}

使用方法(介绍使用的四种情况):

button.addClickScale(0.8f,100) // 缩小20%、缩小持续时间100msbutton.addClickScale(0.8f) // 缩小20%、缩小持续时间使用默认值150msbutton.addClickScale(duration = 100) // 缩小使用默认10%、缩小持续时间100msbutton.addClickScale() // 缩小使用默认10%、缩小持续时间使用默认值150ms

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。