Android不确定的ProgressBar不是动画

Ser*_*kov 4 android

我有这种奇怪的情况

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!"/>

    <ProgressBar
        android:id="@+id/my_progressBar"
        style="@style/Widget.AppCompat.ProgressBar.Horizontal"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:indeterminate="true"/>
</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

结果是 在此输入图像描述

ProgressBar不是动画.我做错了什么?

Ser*_*kov 11

供将来搜索.找到错误很容易也很难.

只需确保您的动画在手机开发者选项中已启用即可.