编写XML文件的时候,经常回出现android XML : unbound prefix这个错误。
例如:
<?xml version="1.0" encoding="utf-8"?> <set> <rotate xmlns:Android="http://schemas.android.com/apk/res/android" Android:fromDegrees="0" android:pivotX="50%" android:duration="0" android:interpolator="@android:anim/linear_interpolator" android:pivotY="50%" android:repeatCount="0" android:toDegrees="-90" /> </set>
一不小心它就会跳出来。