今天在使用ScrollView时出现错误,提示:
Unexpected namespace prefix "xmlns" found for tag ScrollView
布局如下:
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scrollbarStyle="outsideOverlay">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical" >
</LinearLayout>
</ScrollView>
原文:http://my.oschina.net/u/1046838/blog/404503