是否有可能改变android不确定进度条的速度(使其变慢)?

0 user-interface android progress-bar

我的不确定水平进度条的速度绝对是太快

当我的应用程序加载(启动画面)时,我的进度条显示。

有人有降低移动杆速度想法吗?目前它的工作原理看起来非常愚蠢。

预先感谢您的帮助和想法!:-)

Ada*_*ore 5

在您的布局文件中,添加此属性 android:inminatedDuration

    <ProgressBar
        android:id="@+id/prbSplashScreen"
        style="?android:attr/progressBarStyleHorizontal"
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:indeterminateDuration="1000"
        android:indeterminate="true"/>
Run Code Online (Sandbox Code Playgroud)

如果您想提高速度,请增加此属性。减小此属性可减慢进度条。