首页 > 解决方案 > MaterialButton 内的进度条

问题描述

当我到达这个关于圆形进度条的页面时,我正在查看材料设计网站,更准确地说是这个视频

我想创建一个像视频中那样的按钮,但我没有看到任何关于此的文档,我不知道从哪里开始

标签: androidmaterial-design

解决方案


我设法简单地使用:

val progress = CircularProgressDrawable(context).apply {
    setStyle(CircularProgressDrawable.DEFAULT)
    // do use setBounds if you need to 
    start()
}
myMaterialButton.setCompoundDrawablesWithIntrinsicBounds(null, progress, null, null)

// Do your stuff


//replace the image by the one you want
myMaterialButton.setCompoundDrawablesWithIntrinsicBounds(null, myDrawable, null, null)

参考:setCompoundDrawablesWithIntrinsicBounds


推荐阅读