且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Android自定义圆形ProgressBar方向

更新时间:2023-12-04 08:54:10

我猜您正在使用rtl语言?您可以通过在 ProgressBar 上设置 layoutDirection 属性来将进度条强制为ltr或顺时针方向.

I guess you're using an rtl language? You can force the progress bar to an ltr or clockwise direction by setting the layoutDirection property on your ProgressBar.

<ProgressBar
    ...
    android:layoutDirection="ltr" />