Category: Uncategorized

  • Enabling USB Debugging Mode for Android Devices

    USB Debugging Mode for Android Device is a must when developing an Android application. It will save you a lot of time when debugging and executing your application. Please note that USB Debugging option might be disabled when your device is already connected to your PC. To enable it, you must disconnect it first and […]

  • Verify If Android Device is Attached to PC for Debugging

    There was time when I was trying to run my Android code to my device but it seemed not working. One of the things I thought that causes this was if my Android device is really connected or attached to my computer. So I had to verify if it was. I’m using windows, so here’s […]

  • How To Scroll Android TextView

    Hi there! Today we’re going to do a script that will make a scrolling Android TextView. I found this one useful when I’m testing my other code snippets. The situation is, my text output exceeds the height of my android device screen, I cannot see the whole output unless I make the TextView scrolling. We […]

  • Multiple Android Button Tutorial

    Hi guys! Today we’re gonna do an example application of android Push Buttons. Push-buttons can be pressed, touched, or clicked by the user to invoke an event or action in your application. This example will show you how to make two android buttons working (you can add more if you want). It also uses an […]

  • Android Toast Tutorial

    What is Android Toast? The Android Toast is a view containing a quick little message for the user. When the toast is shown to the user, appears as a floating view over the application so it will never receive focus. The idea is to be as unobtrusive as possible, for example you want to instantly […]

  • Fixed: Android requires compiler compliance level 5.0. Please fix project properties.

    When I tried to import an existing eclipse android project to my new workspace, I encountered an error: Android requires compiler compliance level 5.0. Please fix project properties. So here’s what I did to fix this problem: Right Click Project > Properties > Java Build Path > Order and Export Tab > Check Your Android […]

  • Android Fix: Eclipse is loading framework information and the layout library from the SDK folder. main.xml will refresh automatically once the process is finished.

    After doing some android coding, I’m supposedly doing some improvement on its user interface. But when I viewed the graphic layout of my main.xml, the black screen did not show up, instead, a message prompted me: Eclipse is loading framework information and the layout library from the SDK folder. main.xml will refresh automatically once the […]

  • Getting Started with Google Android Development

    May 2013 Update: How to Install Android Development Environment I was so happy of the news that I will be working with Google Android Development. Its cool, now I can use my knowledge in Java Programming. I took up one Java Programming course (one semester) when I was in college. So here it is, I wanna […]