本文介绍了Android材质按钮,在文本顶部带有图标的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否可能有一个实质性的按钮,其文本顶部带有这样的图标:

Is it possible to have a material button with an icon on top of its text as such:

如果是的话,您能用一些代码解释一下吗?

If yes, can you please explain how with some code?

谢谢.

推荐答案

现在,您可以使用属性 iconGravity="top" .

Now you can use the attribute iconGravity="top".

类似的东西:

<com.google.android.material.button.MaterialButton
    app:icon="@drawable/...."
    app:iconGravity="top" />

注意:至少需要版本 1.3.0-alpha02 .

Note: It requires at least the version 1.3.0-alpha02.

这篇关于Android材质按钮,在文本顶部带有图标的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

05-28 04:37
查看更多