Posts

Showing posts from January, 2012

How to change the size of the Android emulator

If your emulator popup is too big in Eclipse; follow the steps below to reduce the size of the Android emulator Go to Run >> Run Configurations . Select your application on the left side. Click on "Target"  tab on the right panel. Scroll down to the bottom and input the following under the "Emulator launch parameters" . Enter the follow command in the additional command options text box -cpu-delay 0 -no-boot-anim -cache ./cache -scale 0.8 This reduces your emulator size by 80%, and remove boot-up Android animation.

Concatenate files using MS-DOS

One or more files can be concatenated and saved to a single file using the very helpful copy command available in MS-DOS. The usage of it as follows, copy <multiple file names separated by the plus(+) operator> <resulting file name > Ex: copy File1.txt+File2.txt File3.txt copy *.* File3.txt