3.6에 맞춘 ADT가 아지가 나오지 않은 관계로 strings.xml 편집시 작업이 불가능할 정도로 NullPointerException이 떨어집니다.

http://www.eclipse.org/forums/index.php?t=msg&goto=548782&#msg_548782 에서 본 바로는 <resources> 노드에 xmlns:android="http://schemas.android.com/apk/res/android" 속성을 추가해주니 이런 재난스러운 상황은 발생하지 않게 됩니다.

<?xml version="1.0" encoding="utf-8"?>
<resources  xmlns:android="http://schemas.android.com/apk/res/android">
    <string name="app_name">Hell...ios</string>
    <string name="notification">Strings.xml not good in ADT. Lots of NullPointerException messages.</string>
    <string name="question">Do want to want to work around it?</string>
</resources>

현재는 ADT 0.9.7 이후의 버전을 기다리면서 이클립스3.5 갈릴레오에서 작업하는 것을 추천하도 싶습니다.

+ Recent posts