android: error:Error parsing XML:unbound prefix
在开发android时xml一直报错:错误的意思是:无边界的前缀。

解决方案:
1、检查编码是否有些错,不然也会报这种错,我的 android:padingTop="20dip"少写了一个d;
2、在布局控件是否有xmlns:android="http://schemas.android.com/apk/res/android",xmlns字段可以限制布局代码的界限。
在开发android时xml一直报错:错误的意思是:无边界的前缀。

解决方案:
1、检查编码是否有些错,不然也会报这种错,我的 android:padingTop="20dip"少写了一个d;
2、在布局控件是否有xmlns:android="http://schemas.android.com/apk/res/android",xmlns字段可以限制布局代码的界限。