如何在android中创建条带进度条

时间:2017-02-28 08:24:11

标签: android android-progressbar

我需要在android中创建条带进度条。如何创建一个如下所示。

我在bootstrap上看到了这个例子,但我不知道如何在我的应用程序中实现它。

1 个答案:

答案 0 :(得分:3)

嗯,您可以尝试这个Bootstrap Progress Bar

并使用app:striped="true",如下所示

<com.beardedhen.androidbootstrap.BootstrapProgressBar
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:animated="true"
    app:bootstrapBrand="warning"
    app:progress="78"
    app:striped="true"
    />

请按照他们提供的guild lines进行操作。

 dependencies {
    compile 'com.beardedhen:androidbootstrap:{X.X.X}'
 }

{X.X.X} =最新的库版本是2.3.1

更多

您还应该使用以下内容覆盖您的应用程序类:

 public class SampleApplication extends Application {
     @Override public void onCreate() {
         super.onCreate();
         TypefaceProvider.registerDefaultIconSets();
     }
 }

它对我有用!

注意

给定示例是默认示例,除非您将app:progress="78"更改为app:bootstrapProgress="78",否则它不会起作用。