当进度条在Android中旋转时,如果您希望停止更改方向,可以使用以下方法:
android:indeterminateOnly="true"
,这将使进度条仅在不确定模式下旋转。ProgressBar progressBar = findViewById(R.id.progressBar);
progressBar.setIndeterminate(false);
progressBar.setProgress(50);
这将使进度条停止旋转,并将其方向设置为从左到右。
onDraw
方法,以便在其中控制旋转方向。public class CustomProgressBar extends ProgressBar {
public CustomProgressBar(Context context) {
super(context);
}
public CustomProgressBar(Context context, AttributeSet attrs) {
super(context, attrs);
}
public CustomProgressBar(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected synchronized void onDraw(Canvas canvas) {
// 在这里控制旋转方向
super.onDraw(canvas);
}
}
然后,在布局文件中使用自定义进度条:
<com.example.CustomProgressBar
android:id="@+id/progressBar"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true" />
这样,您就可以在进度条旋转时停止更改方向。
领取专属 10元无门槛券
手把手带您无忧上云