My android app is complaining about resource missing, which I do think has been included and worked great in previous version of android.
e.g.,
menu.xml:27: error: Error: No resource found that matches the given name (at 'title' with value '@string/lookup_about').
<item
android:id="@+id/about"
android:title="@string/lookup_about"
android:icon="@drawable/ic_menu_help"/>
In string.xml, I've defined
<string name="lookup_about">About</string>
Update:
I found that in one case, only the 2nd @string/spinder_prompt was complained by eclipse. The first one is not
<TextView
android:id="@+id/refresh"
android:text="@string/spinder_prompt"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textSize="16dip"
android:typeface="sans"
android:layout_gravity="left"
android:textColor="#ffffff"
/>
<Spinner android:id="@+id/Spinner01"
android:gravity="center_horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:prompt="@string/spinder_prompt"
android:layout_weight="0.02"/>
In my strings.xml,
<string name="spinder_prompt">Choose the number of items to show</string>
FYI. This code was built and deployed and tested on Android 2.2 systems without any issues.
strings.xml, notstring.xml, though that should not matter. Is yourstring.xmlfile inres/values/or a related resource set? Also, have you cleaned your project (Project | Clean from Eclipse, orant cleanfrom the command line)?