我有奇怪的情况
<?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>
ProgressBar不是动画。我做错了什么?
答案 0 :(得分:8)
将来的搜索。找到错误很容易也很难。
请确保您的动画在手机开发者选项中已启用。
答案 1 :(得分:-1)
当我在模拟器上运行App时,动画不起作用。但是,如果我切换到真实设备,则条会旋转。