错误.xml“错误:解析XML时出错:未绑定的前缀”

时间:2016-06-24 13:01:51

标签: android xml animation fadein alpha

我试图制作一个fadein动画,但它给了我这个错误:

error: Error parsing XML: unbound prefix

这是代码:

<?xml version="1.0" encoding="utf-8"?>
<set>
<alpha android:fromAlpha="0.0"
       android:toAlpha="1.0"
       android:interpolator="@android:anim/accelerate_interpolator"
       android:duration="3000">
</alpha>
</set>

2 个答案:

答案 0 :(得分:2)

您案例中的未绑定前缀为android。添加

xmlns:android="http://schemas.android.com/apk/res/android"

到您的设置。 E.g。

<set xmlns:android="http://schemas.android.com/apk/res/android"> 

xmln是namespace

答案 1 :(得分:2)

第一个节点(set)需要包含

xmlns:android="http://schemas.android.com/apk/res/android"