我正在尝试在Imageview对象上使用视图动画。我已经定义了一个rotate.xml文件。但是我在文件中遇到了几个错误: -
1)元素类型“rotate”必须后跟属性规范“>”或“/>”。 2)错误:解析XML时出错:格式不正确(令牌无效)
这是我的rotate.xml文件: -
<?xml version="1.0" encoding="utf-8"?>
<rotate
xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@android:anim/linear_interpolator"
android:fromDegrees="0"
android:toDegrees="180"
android:pivotX="50"
android:pivotY="50"
android:repeatCount="infinite"
android:duration="3000">
</rotate>
答案 0 :(得分:3)
如果您移除</rotate>
并将>
替换为/>
,可能会尝试解释<rotate>
和</rotate>
之间的空格