Taj 03
Taj 02
Taj 01
Fixing “emulator: ERROR: unknown virtual device name:” issue with Android SDK
Android SDK expects your AVD to be located at the location “C:\Documents and Settings\<username>”. If your home folder is at some other location, you might see the error:
ERROR: unknown virtual device name: <device name>
when you try to run your application in the emulator. To fix this, create a new environment variable named “ANDROID_SDK_HOME” and set its value to the location of your home folder. To be sure that you are entering the correct value, verify that there’s a folder named “.android” at this location.
onclick or ONCLICK or onClick?
HTML is case-insensitive and therefore the casing of event handler names in your HTML documents is irrelevant. E.g. you can use onclick, ONCLICK, onClick or event oNcLiCk for your event handler name. However, XHTML is not so liberal and stipulates that all event handler names should be lowercase (e.g. onclick=”…”). Therefore, to make your HTML pages XHTML compliant, always use lowercase event handler names.



