Sunday 11 March 2012

Funny Thing Apple iPhone 4S became 4G after update.

Customers were astonished to see the 4G icon on the screen after the iOS updates. Apple has never launched a 4G device before the iPad. People don' know what algorithm is used by iOS to detect a 4G connection.

Please read the full details here.
http://www.slashgear.com/apple-iphone-4s-begins-showing-4g-icon-11217853/

How to save a textFile to SDCARD in android?

Here is yet another simple example showing creating and saving a text file in android to SDCARD in android.

Here is a link to the source code.

Saving TextFile to SDCARD in android?



Upload Multiple files in one request in android?

Often in our application we need to upload audio or video files to a server. Sometimes it should be done in one request. This can be done in android in a simple way.

This example helps you do this. 
How to Upload Multiple files in one request along with other string parameters in android?

Saturday 10 March 2012

SQLiteManager plugin for eclipse






When you are working on an Android application that stores data in a SQLite database.There arise many questions like where does this database file get stored on the filesystem ? How can we access the database? i will give solution to all these problems. 
I created the database from my previous post about Using SQLite in ANDROID

 This link provides the Plugin for eclipse for viewing the database.

Working with SQLite databases through command Line in android.

Here is a simple example that shows how to work with SQLite databases through command Line in android.


Work with SQLite databases through command Line in android.

Friday 9 March 2012

How to upload files to a server in android?

Hello everyone..
      
         Many times we need to upload image files to a server in our applications. There may be many examples that provide these examples. But here is a simple and working example of how to implement this.


This example shows how to do this...
Follow this link for the complete source code..
Uploading audio, video or image files from Android to server



Please leave your comments if you found this link and post useful.

Thursday 8 March 2012

Expandable List in Android- A simple and effective example

Expandable List is a very useful widget in android. It helps developers a UI that has a lot of information hidden in the same window itself.
Here is a link where you can find a simple explanation of the expandable list with a fully working sample code.

Expandable ListView in ANDROID using SimpleExpandableListAdapter, a simple example.