Eclipse Android Imagebutton Accesibility Missing ContentDescription Attribute On Image

ImageButton is a great addition in Android. However, it can generate a warning which can luckily easy to overcome. Description Resource Path Location Type: [Accessibility] Missing contentDescription attribute on image menu.xml /project/res/layout line 22 Android Lint Problem. To fix this add the following line in the xml at the ImageButton android:contentDescription=”@string/desc” Resolved this warning by setting

Read More

Eclipse Android Tag Should Specify A Target API Level

Android SDK Tools revision 17 warning about API Level running in API 15, this properly occur in previous versions as well. Error: “Description Resource Path Location Type: <uses-sdk> tag should specify a target API level (the highest verified version; when running on later versions, compatibility behaviors may be enabled) with android:targetSdkVersion=”?” AndroidManifest.xml /inLogic line 7 Android

Read More

Eclipse complains about jquery minified JS files

When using minified files in Eclipse it can caused errors when there shouldn’t be any. Eclipse complains when using jquery.min.js files. One solution is to ignore the specific file. Go to : Project->Properties->JavaScript->Include Path->Source-> Excluded Groups ignore specific files by adding a suitable exclusion pattern e.g. **/jquery*.js Solution found at bug report 349020 comment 15 via stackoverflow topic ignore

Read More

Eclipse failed, Java was started but returned exit code=-805306369

Eclipse suddenly started to hang when starting up around “Loading Workbench” 805306369. Eclipse stopped responding and you get the dialog to close the program. “Java was started but returned exit code=-805306369” The error shown afterwards: “Java was started but returned exit code=-805306369” If you are running java 1.6u21 then look at Eclipse Bug 319514 and The Oracle/Sun

Read More

Dreamweaver is unable to open PhoneGap in the emulator

“Dreamweaver is unable to open “PhoneGap” in the emulator. Please consult the buildlog at C:\Users\$name\Desktop\myapp.app_Android\buildlog.log for additional details.” Building PhoneGap application with Dreamweaver is fairly easy. PhoneGap app are build with HTML, CSS and Javascript. It can be created with any IDE or text editor, yes even vi on Linux. Adobe has made this possible

Read More