parsing XML: unbound prefix

在LinearLayout添加滚动效果的时,代码如下:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
	android:layout_width="fill_parent"
	android:layout_height="fill_parent"
	android:scrollbars="vertical"
	android:fadingEdge="vertical">
	<LinearLayout
		xmlns:android="http://schemas.android.com/apk/res/android"
	  	android:layout_width="fill_parent"
	  	android:layout_height="fill_parent"
	  	android:orientation="vertical"
	  	android:scrollbarStyle="outsideInset"
	  	android:scrollbars="vertical">

结果保存的时候提示:acount_manage_activity.xml:2: error: Error parsing XML: unbound prefix

acount_manage_activity.xml:2就是代码的第二行

后发现

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

 必须作为第一个节点的属性,即将LinearLayout的xmlns:android属性去掉,ScrollView加上xmlns:android属性。

 

 

网上还有错误为

android:layout_width="fill_parent"

 写成

Android:layout_width="fill_parent"

 

 

参考:

http://stackoverflow.com/questions/2221221/frequent-problem-in-android-view-error-parsing-xml-unbound-prefix

你可能感兴趣的:(android,xml)