gpt4 book ai didi

java - Android进度条一直在转

转载 作者:行者123 更新时间:2023-11-30 05:06:15 25 4
gpt4 key购买 nike

我正在尝试使用进度条(正常的,而不是水平的)作为某种指南针,但由于某种原因,进度条一直在不受控制地旋转。我已经在 xml 和附加的 Java 代码中将不确定设置为 false,但它似乎什么也没做。

这是 View 的 xml 代码:

    <ProgressBar
android:id="@+id/brujula"
style="?android:attr/progressBarStyle"
android:layout_width="229dp"
android:layout_height="507dp"
android:layout_marginStart="91dp"
android:layout_marginTop="90dp"
android:layout_marginEnd="91dp"
android:layout_marginBottom="135dp"
android:visibility="invisible"
android:indeterminate="false"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />

我用来在 Java 中将其设置为 false 的代码也是

ProgressBar brujula = (ProgressBar) FindViewById(R.id.brujula);
brujula.setIndeterminate(false);

我不知道为什么它一直这样做,所以任何帮助都将不胜感激

最佳答案

你好,如果你想显示进度条,试试这个。

ProgressBar brujula = (ProgressBar) FindViewById(R.id.brujula);
brujula.setVisibility(View.VISIBLE);

以及你想停止加载和隐藏进度条的地方使用

brujula.setVisibility(View.GONE);

关于java - Android进度条一直在转,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54538549/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com