As a user of Android Studio 1.4, I found that the menu bar and it's sub-menus / sub options had a considerable delay before they showed up. I identified this to be with the icons and the animation effects on the menu and it's appearance. To increase speed of the menu appearing, do the following: … Continue reading Speed up menu bar and sub options opening in Android Studio 1.4
Tag: IDE
Error when creating Android Project in Eclipse IDE
android-sdks/build-tools/17.0.0/aapt: error while loading shared libraries: libz.so.1: cannot open shared object file: No such file or directory To fix the above error, open a terminal window and install:$ sudo apt-get install lib32z1 <enter>
Agile Programming in Eclipse tutorial for beginners
Good way for beginners to learn test driven programming in Eclipse for Java. See the tutorials here http://eclipsetutorial.sourceforge.net/totalbeginner.html.
Eclipse IDE and Python Development
Python is very easy to learn. However, for newbies, you need a code editor that allows you to view code completion. Code completion helps to develop and learn a new computer language rapidly and that is why, Eclipse is one of the most popular Integrated Development Environments (IDE) out there. To develop programs using Python … Continue reading Eclipse IDE and Python Development