developer

Displaying All Posts Tagged as "developer"

Understanding Android stack traces

If you’re developing Android applications, you will inevitably make mistakes and cause crashes. Luckily, its usually dead simple to figure out what’s gone wrong by reading the stack trace. If you’re not comfortable with reading them, then I strongly suggest you take a few minutes and read on.

Read More »
Android: Using SQLite databases in your application

Databases is central part in many Android applications, and there is a number of ways to implement one. Maybe you have the database stored online and just download it to the phone and read from it or maybe you include it with the application itself. However, most commonly, you want to create and manage the database directly from the application. This is what you would probably end up doing if you are making a notepad app, a contact manager, or any other local database oriented application. In this tutorial we will be taking a closer look on how to do exactly that, so jump in and lets begin.

Read More »