調べてみるとどうやらEclipse3.6だけで起きている模様
<?xml version="1.0" encoding="utf-8"?> <resources> <string name="hello">Hello World, hello!</string> <string name="app_name">hello</string> </resources>
上記を下記のようにすればエラーがでなくなる
<?xml version="1.0" encoding="utf-8"?> <resources xmlns:android="http://schemas.android.com/apk/res/android"> <string name="hello">Hello World, hello!</string> <string name="app_name">hello</string> </resources>