在Android中向ProgressBar添加图标

时间:2016-06-08 17:48:12

标签: android animation progress-bar

我是Android动画的新手,我想实现一个带有图标的ProgressBar,其大小会在动画中增加和减少,如图所示。

enter image description here

enter image description here

enter image description here

1 个答案:

答案 0 :(得分:3)

SeekBar with Coin

使用SeekBar代替ProgressBar。 seekbar中的Thumb属性会在进度后显示您的图标。

SeekBar XML属性 - android:thumb =“drawable”

 <SeekBar
            android:id="@+id/seek_bar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_margin="10dp"
            android:max="100"
            android:thumb="@drawable/ic_pp" />