Android : Creating notification using Toast

Monday, 21 March 2011 08:08 by Anupama
Toast notification is a message popup in android application which popup on application window and automatically fades in. It fills only required area on screen and user's activity and interaction are remains enable, it mean during popup of toast message user can do interaction's like entering text, selection of controls ect. [More]

Android: Creating My First Custom View

Tuesday, 4 January 2011 07:49 by Anupama
In Android java API's all views (UI Controls) are derived from android.view.View class. If you want to create your own custom view (UI Control) then you can create them very easily by deriving new view class from any existing view like TextView, Button etc to extending them or from View class and override methods which are required to override. [More]

Android: Calling Web Service with complex types

Friday, 8 October 2010 08:39 by Anupama
Calling web service on Android is possible with KSOAP2 (ksoap2-android-assembly-2.4-jar-with-dependencies.jar) or you can write you own soap message formatter and can make http call using android apache http classes. [More]

Android: Passing object from one activity to another

Monday, 27 September 2010 09:06 by Admin
While doing application programming in android we need to pass objects from one activity to another. These objects can be any thing like string, numbers, dates or some user defined class objects. [More]

Reason of Conversion to dalvik format failed with error 1

Friday, 24 September 2010 09:47 by sheel
When i have started working on Android 2.1 application, i was very new to Android, Java programming and Eclipse. I have just started without understanding android platform. I just started programming using Android Development SDK and documentation. I was very happy while i was doing this because every think is going very smooth and i have created tabbed UI and other stuffs like http connections. [More]