예제 소스를 보고 있는데..


처음에는 에러가 없었다...

Graphical Layout 화면으로 갔다 오니까..



- 에러 생성 ㅠㅠ 오우 지쟈스~


- 뒤로가기로도 해결이 안된다.. 흠흠..

- 구글링들어간다.. 찾았다..

http://stackoverflow.com/questions/14916638/unexpected-namespace-prefix-xmlns-found-for-tag-linearlayout

In an Android xml file, the Android namespace can:

  • only be declared once
  • only be declared in the top ('outer') Android View in the xml hierarchy

or you'll receive an error when building the project. In your case, the top Android view is theScrollView, so keep

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

in the ScrollView, and remove it from all other nested Views, including the LinearLayout.



- 중복이니 아래에 선언한걸 삭제하니 잘 된다.. 왜 복사한 파일은 그냥 된걸까? 


'개발 > 에러' 카테고리의 다른 글

Local path doesn't exist.  (0) 2013.10.29
R cannot be resolved to a variable.  (2) 2013.08.09
Theme.Appcompat.Light 리소스를 찾기 못함  (0) 2013.08.08
R.java 생성 안됨..  (0) 2013.08.08
Posted by 행복한 개발자이고 싶다