我是Android编程的初学者。我试图在我的应用程序上显示一个圆圈进度条,但是进度不会在Android 7.0手机上显示,或者在其他装有Android 8.0的手机上显示圆圈箭头没有旋转。 在Internet上进行了长时间的研究之后,我发现发生这种情况的原因是在“开发人员设置”中禁用了动画。我不喜欢窗口动画,过渡... 有什么解决办法吗?我的应用程序中有一些设置可以启用进度条动画?
根据要求,我添加了一些代码。但是我的代码没有什么特别的。 我使用Android Studio生成了一个空应用程序。最低SDK 21,目标SDK 28。
我的应用程序布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<ProgressBar
android:id="@+id/Progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:indeterminate="true"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Hello World!"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
我的应用程序主要活动:
package ro.essd.testprogbar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
仅在“开发人员选项”中,“ Animator Duration Scale”(动画人持续时间比例)可以执行某些操作。如果被禁用,则结果如下:
如果上述设置设置为1x,则进度条将旋转。
谢谢!