自定义进度条为Android

时间:2015-02-17 04:43:37

标签: java android canvas android-progressbar

是否可以像下面的图像一样制作进度条。

enter image description here

明星必须通过给予百分比来填补。任何帮助都会非常值得一提。感谢。

1 个答案:

答案 0 :(得分:10)

enter image description here

有一个库可以获得上面的动画。

找到它here

使用起来并不复杂。您所要做的就是在布局中添加以下自定义视图

<com.romainpiel.titanic.TitanicTextView
    android:id="@+id/titanic_tv"
    android:text="@string/loading"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textColor="#212121"
    android:textSize="70sp"/> 

然后启动它:

titanic = new Titanic();
titanic.start(myTitanicTextView);

是的,您可以使用它代替progressBar。您所要做的就是根据您的要求覆盖它的代码。