Sending SMS on Android and tracking it
Lets look at how to send an SMS. It’s pretty simple though. A few lines of code and your SMS is gone. To make it more convenient and meaningful, we… Read more »
Lets look at how to send an SMS. It’s pretty simple though. A few lines of code and your SMS is gone. To make it more convenient and meaningful, we… Read more »
First things first. Is it legal to download videos from Youtube? As much I have understood from the Terms of Service, it’s not a straight yes or no. Basically, Youtube… Read more »
This is a part of a series of posts in which I will put forward a full working app what uses bluetooth on your Android device to discover, connect, pair,… Read more »
I love animations. Let’s see the video first. If you are excited, go peek at the code. In this example, the main layout contains two ImageView widgets with two different… Read more »
Intents or Intent messaging is the Android’s way to pass messages/information to various components of Android. An Intent object contains information that the target component can act upon. Through Intents,… Read more »
The default title bar for the apps might not suit the theme of your app. You also might want to add a few more things to the title bar which… Read more »
This is a small project that does this. “On your phone’s screen, you will have a ball lying at the bottom part, in the middle. Once you touch any part… Read more »
Streaming radio stations or audio files hosted on streaming servers on Android is pretty straight-forward. But then, Android has it’s limitations. It won’t stream just any file or radio station…. Read more »
I had to do this for a project that I am working on, and I felt that it wasn’t possible to achieve this. Well, there are several examples on the… Read more »
Nothing complex. Just a few lines of code to invert your button. A horizontal flip of 180 degrees is pretty simple to achieve. If you want it with a specific… Read more »