Showing posts with label Uploading images. Show all posts
Showing posts with label Uploading images. Show all posts

Sunday, 10 June 2012

CoderzHeaven on Facebook, New Fan Page


Please find us on Facebook for more updates.


This is our new Fab page Url.

http://www.facebook.com/CoderzHeavenFans

By adding us on Facebook, you can get access to our new updates fast and get answers to your questions quickly.

So please add us on Facebook.


Please find us on Twitter also..

https://twitter.com/coderzheaven


Monday, 4 June 2012

How to read a text file in ANDROID?


Hi all…..


In this post I will show you how to read a text file in ANDOID.
Let your file is in the assets folder of your ANDOID project.
The file is named “myfile.txt”


This example reads the file line by line using readLine() function till the end of the file. Here your need two classes named “InputStreamReader” and “BufferedReader”. For writing into the file you need “OutputStreamReader” class. The result is displayed in a Toast. Make sure you notice it.

Read more from here...

http://www.coderzheaven.com/2012/04/22/how-to-read-a-text-file-in-android-2/

Saturday, 12 May 2012

How to build a custom progressBar in android- Part 2?


Hello all.......

Today I am going to show you how to create a custom progressbar in android.
Previously in another posts I have already shown <a href="http://www.coderzheaven.com/?p=2689" target="_blank">how to build a custom indeterminate progressbar in android.</a>
And in this post I will show you how to customize the horizontal progressbar.

See the complete post here....
http://www.coderzheaven.com/2012/05/12/build-custom-progressbar-android-part-2/

Sunday, 11 March 2012

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?