Getting animations to work
This is a simple project that will explain how to use animations in android through AnimationDrawable. The documentation was a bit outdated. But you might hit a dead-end if you… Read more »
This is a simple project that will explain how to use animations in android through AnimationDrawable. The documentation was a bit outdated. But you might hit a dead-end if you… Read more »
You need an app that can unzip files? Android provides the classes that are required for this. Basically you will need to checkout two classes. There are other related classes… Read more »
There is a concept of an Ongoing notifications in Android where you just show a notification for the duration you are performing some background task/process. This special kind of notification… Read more »
Passing data between activities is quite easy. You would normally do that using the Bundle packed into an intent. But sometimes you need to pass complex objects from one activity… Read more »
I have seen a few applications which first try to initiate a network connection before checking if any network is available or not. And then, if the request fails, they… Read more »