Eclipse를 다시 만든 후에 R.class가 R.class를 만들지 않는 솔루션을 찾았습니다 .2 청소, 빌드 등
문제는 여기 strings.xml에 있습니다.
<string name="hello">Hello World, HelloAutoComplete!</string>
<string name="app_name">HelloAutoComplete</string>
이들은 기본적으로 프로젝트를 작성할 때 Eclipse에 의해 작성됩니다.
분명히 자신의 요구 사항에 맞게 strings.xml을 변경하고 있습니다. 때로는 코드에서 다음 두 줄의 string.xmls를 지우십시오.
AndroidManifest.xml 파일에 문제가 있습니다.
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".HelloAutoComplete" android:label="@string/app_name">
따라서 strings.xml과 통신 할 수 없습니다.