Note that there are some explanatory texts on larger screens.

plurals
  1. POI am struggling with resolving this resource error in xml
    text
    copied!<p>I have been struggling with this error for 2 days now and i am at wits end. building this project in eclipse.according to the sdk this png does not need to be imported. i imported into my drawables anyway after this error generated to no avail. is anybody willing to point me in the right direction here?</p> <p>Error: No resource found that matches the given name (at 'icon' with value '@android.drawable/ic_menu_add'). W/ResourceType( 1020): Bad XML block: header size 62 or total size 9767704 is larger than data size 0</p> <pre><code> //*list_menu.xml &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;menu xmlns:android="http://schemas.android.com/apk/res/android"&gt; &lt;item android:id="@+id/menu_insert" android:icon="@android.drawable/ic_menu_add" android:title="@string/menu_insert" /&gt; &lt;/menu&gt; //*strings.xml &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;resources&gt; &lt;string name="hello"&gt;Hello World, ReminderListActivity!&lt;/string&gt; &lt;string name="app_name"&gt;Task Reminder&lt;/string&gt; &lt;string name="no_reminders"&gt;No Reminders Yet&lt;/string&gt; &lt;string name="title"&gt;Title&lt;/string&gt; &lt;string name="body"&gt;Body&lt;/string&gt; &lt;string name="date"&gt;Date&lt;/string&gt; &lt;string name="time"&gt;Time&lt;/string&gt; &lt;string name="confirm"&gt;Confirm&lt;/string&gt; &lt;string name="menu_insert"&gt;Add Reminder&lt;/string&gt; &lt;/resources&gt; //*AndroidManifest.xml &lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;manifest xmlns:android="http://schemas.android.com/apk/res/android" package="com.dummies.android.taskreminder" android:versionCode="1" android:versionName="1.0"&gt; &lt;uses-sdk android:minSdkVersion="8" /&gt; &lt;application android:icon="@drawable/icon" android:label="@string/app_name" android:debuggable="true"&gt; &lt;activity android:name=".ReminderListActivity" android:label="@string/app_name"&gt; &lt;intent-filter&gt; &lt;action android:name="android.intent.action.MAIN" /&gt; &lt;category android:name="android.intent.category.LAUNCHER" /&gt; &lt;/intent-filter&gt; &lt;/activity&gt; &lt;activity android:name=".ReminderEditActivity" android:label="@string/app_name"/&gt; &lt;/application&gt; &lt;/manifest&gt; </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload