If you’re reading this then you probably already know that Android provides full support for SQLite databases. So any database(s) you create will be accessible by name to any class in an Android application, just not outside the application.…
>Read more
by Binil Thomas
Whenever a user launches an Android application, a thread called “main” is automatically created. This main thread, also called the UI thread, is crucial since it’s responsible for dispatching events to various widgets, including the drawing events.…
>Read more
(Binil Thomas)
Anyone with significant time in mobile application development understands the challenges of writing portable applications. There are tons of reasons for this, but probably the biggest hurdles we face are:
- Varying screen sizes
- Varying screen resolutions
- Varying
…
>Read more