<?xml version="1.0" encoding="utf-8"?>
<translate
xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="0"
andriod:toXDelta="10"
android:duration="1000"
android:interpolator="@anim/cycle_7" />
在我的代码中,我一直得到<translate>
的错误,并说它是一个未绑定的前缀。我正在研究用于学习android os编程的数独项目,这让我保持不动。
答案 0 :(得分:0)
我不确定这里发生了什么,但是当我从您的问题中剪切并粘贴xml代码时,我收到了相同的未绑定前缀错误。
但是,当我从头开始输入时,一切都很好。
<?xml version="1.0" encoding="utf-8"?>
<translate xmlns:android="http://schemas.android.com/apk/res/android"
android:fromXDelta="0"
android:toXDelta="10"
android:duration="1000"
android:interpolator="@anim/cycle7"/>
答案 1 :(得分:0)
你可以试试这个,它对我有用
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android"
android:interpolator="@anim/cycle_7" >
<translate
android:fromXDelta="0"
android:toXDelta="10"
android:duration="1000" />
</set>
答案 2 :(得分:0)
似乎非常明显。没有xmlns =&#34; xxx&#34;声明,因此空前缀没有xmlns声明。您可以预先声明xmlns绑定。不记得怎么样;但这就是解决方案。