Wednesday, March 20, 2013

Stack based vs Register based Virtual Machine Architecture, and the Dalvik VM

http://markfaction.wordpress.com/2012/07/15/stack-based-vs-register-based-virtual-machine-architecture-and-the-dalvik-vm/

Tuesday, February 19, 2013

Thursday, January 24, 2013

Creating Dialogs in android

http://www.linuxtopia.org/online_books/android/devguide/guide/topics/ui/dialogs.html

Thursday, January 17, 2013

problem with jelly beans for parsing intent getStringExtra parameter

If I am using below example code for String value from intent in jelly beans.It gives me null value

Ex:   notification_type =  intent.getStringExtra("notification_type");


If I am using below example code for String value from intent in jelly beans.It gives me string value

Ex:     Bundle extras = intent.getExtras();
notification_type =extras.getString("notification_type");