是否可以将旋转图标(如进度条)作为材质按钮图标?
谢谢。
是的,您可以在 Button 上实现
我在 Material FloatingButton 中使用了它。
在res/anim/ 文件夹中制作此文件SlideUp__Animation.xml
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="700"
android:fromYDelta="90%"
android:toYDelta="0"
/>
</set>
在主类的浮动按钮中应用它。
fButton.startAnimation(AnimationUtils.loadAnimation(getActivity(), R.anim.slideup__animation));
您可以使用进度条本身并添加 onclick 事件侦听器,以便它可以像添加onClick="whenProgressBarIsClicked()"
到您的 XML 和下面的语句到您的 Java 代码中的按钮一样表现
添加
public void whenProgressBarIsClicked(){
//Do some wonderful stuff here
}
如果您使用 Kotlin,您可以将上面的代码替换为您的 Kotlin 代码。