Posts

How to draw path between two geo points on goole mpas in android

http://adrianandroid.blogspot.in/2012/09/how-to-draw-shortest-path-between-two.html

This is for push notifications

http://tokudu.com/2010/how-to-implement-push-notifications-for-android/

How to read InputStream

InputStreamReader reader = new InputStreamReader(inputstream ); StringBuilder buf = new StringBuilder(); char[] cbuf = new char[ 2048 ]; int num; while ( -1 != (num=reader.read( cbuf ))) { buf.append( cbuf, 0, num ); } String result = buf.toString(); System.err.println( "\nResponse from server after POST:\n" + result ); reader.close();

How to create database

http://androidforbeginners.blogspot.com/2010/01/creating-multiple-sqlite-database.html

How to get Android local files URI

String introURI;   introURI = Uri.parse( "android.resource://your.app.package/"  + R.raw.intro);  String introURI;   introURI = Uri.parse( "file:///sdcard/intro.3gp" );