gpt4 book ai didi

Android iconGravity 不适用于具有 CircularProgressIndicator 的 MaterialButton

转载 作者:行者123 更新时间:2023-12-04 11:29:19 25 4
gpt4 key购买 nike

我创建了一个扩展 MaterialButton 的自定义 View ,它在加载时将可绘制对象替换为 CircularProgressIndicator。
但是,当我用 CircularProgressIndicator 替换可绘制对象时,iconGravity 不再起作用。我看不出我做错了什么。
我已经能够将类(class)归结为:

class LoadingButton constructor(context: Context) : MaterialButton(context) {

private val progressIndicatorDrawable by lazy {
val progressIndicatorSpec = CircularProgressIndicatorSpec(context, null, 0, R.style.Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall)
progressIndicatorSpec.indicatorColors = intArrayOf(getColor(context, R.color.white))
IndeterminateDrawable.createCircularDrawable(context, progressIndicatorSpec).apply {
setVisible(true, true)
}
}

init {
// the following drawable is aligned to the start of the view (incorrect).
icon = progressIndicatorDrawable
// the following drawable is aligned to the start of the text (correct).
// icon = DrawableUtil.getDrawable(context, R.drawable.icon_delete)
text = "Delete"
iconGravity = ICON_GRAVITY_TEXT_START
}
}
我正在使用这个依赖
// I've also tried 1.5.0-alpha02
implementation "com.google.android.material:material:1.3.0"
正确位置可绘制对象位于文本的开头。
drawable correct position
位置不正确进度指示器不再位于文本的开头。
progress indicator incorrect position

最佳答案

奇怪的是,一个drawable可以工作,而另一个却不能。可能值得将其报告为错误。同时,我可以提供一种不涉及大量工作的解决方法(IMO)。
如果我们采用您的自定义 View 并删除 iconGravity并将文本的重力设置为开始和垂直中心:

gravity = Gravity.START or Gravity.CENTER_VERTICAL
我们可以在按钮的左侧将不确定和文本放在一起:
enter image description here
现在的问题是如何让这对在按钮中居中。我们可以从 code 中得到提示。对于 MaterialButton 来说,左侧需要多少空间才能使可绘制对象和文本居中。
int newIconLeft =
(buttonWidth
- getTextWidth()
- ViewCompat.getPaddingEnd(this)
- localIconSize
- iconPadding
- ViewCompat.getPaddingStart(this))
/ 2;
把它们放在一起:
enter image description here
这是演示代码。如果您的实际按钮比您的问题中描述的更复杂,则可能需要进行一些调整。
class LoadingButton @JvmOverloads constructor(
context: Context, attrs: AttributeSet? = null
) : MaterialButton(context, attrs) {

// true - use indeterminate; false = use delete icon
private val useIndeterminate = true

private val progressIndicatorDrawable by lazy {
val progressIndicatorSpec = CircularProgressIndicatorSpec(
context,
null,
0,
R.style.Widget_MaterialComponents_CircularProgressIndicator_ExtraSmall
)
progressIndicatorSpec.indicatorColors = intArrayOf(getColor(context, R.color.white))
IndeterminateDrawable.createCircularDrawable(context, progressIndicatorSpec).apply {
setVisible(true, true)
}
}

init {
if (useIndeterminate) {
icon = progressIndicatorDrawable
gravity = Gravity.START or Gravity.CENTER_VERTICAL
} else {
icon = ContextCompat.getDrawable(context, R.drawable.icon_delete)
iconGravity = ICON_GRAVITY_TEXT_START
gravity = Gravity.CENTER
}
text = "Delete"
}

// This is homw much we need to shift the contents of the button to the right in order to
// center it.
private var xShift = 0f
override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
super.onLayout(changed, left, top, right, bottom)
if (useIndeterminate) {
xShift = (width
- icon.intrinsicWidth
- paint.measureText(text.toString())
- iconPadding
- ViewCompat.getPaddingStart(this)
- ViewCompat.getPaddingEnd(this)) / 2f
}
}

override fun onDraw(canvas: Canvas?) {
// Shift right before drawing.
canvas?.withTranslation(xShift) {
super.onDraw(canvas)
}
}
}

关于Android iconGravity 不适用于具有 CircularProgressIndicator 的 MaterialButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/69032458/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com