Few of you must be wondering why there were no updates from quite a long time. Thank you for all that love and interest shown in my articles. I have taken this gap to create something more big,better and interesting to reach you all. Started a new endeavour that includes all the latest topics regarding application development. All the latest trends are being tracked and efforts are being put in to make them look simple and friendly to you.
From now on, all my posts will be moved to a website "CreateAppFaster.com". Due tune...
Friday, 17 October 2014
Saturday, 11 January 2014
Android Application Shortcut Icon on HomeScreen
Today almost every Application we installed in our device, they created shortcut icon on the Home Screen in order to be more interactive with the user. So, the question is how to do it programmatically. Today, we will covered how to add or remove Shortcut Icon on Home Screen.
For this demo, I have created a sample project with name ShortcutIcon.
First Step:-
I have create a simple xml file with having two button on it.
Add Shortcut...
Wednesday, 27 November 2013
Technical Skill Representation Using Impress.js
Impress.js is a presentation tool inspired by the idea behind prezi.com. It is supported by CSS3 feature in modern browsers like transform and transitions. Source code for the same can be found at the given Link. If you have something interesting to say, and want to convert your thoughts into realization then impress.js is for you. It gives you wing to have any 3D transformation and the only limit is your imagination. Sample could also be seen in About Me link, of the blog. I have made an Interesting Demo using...
Wednesday, 14 August 2013
Registration Activity Using Shared Preference Android
Android comes with plenty of options to store persistent Application data. The approach you use depends upon your needs, is your data is private or how much space you need and is it accessible to other application or not.
In Android we have following option for storing persistence data.
Shared Preference -> store data in key- value pairs.
Internal Storage -> Private data on device.
External storage -> public data on sharable...
Saturday, 10 August 2013
Android Admob Sample Code
Today we have an interesting topic to cover that will help many android developer who have their free android application on Google Play. The Google Admob Ads SDK is the latest generation in Google mobile advertising having well refined ads for mobile.
Lets begin with sample code demo:-
Step 1:- Get Registered with Admob to get the publisher Id
After filling basic information Click –> Add Site/App
and fill the information Like below.
...
Thursday, 8 August 2013
Mobile Development–Native v/s PhoneGap?
Technorati Tags: Native v/s PhoneGap,phonegap development,phonegap Application,android application,difference between ios and phonegap,difference between blackberry and phonegap.
I have been asked many a times which is the best solution of developing mobile application. Since I have experience of both Application development methods. Today I will try to provide a little insight of how these two methods actually works.
Native
Every mobile system runs into its own Operating System like Apple has ios in iphone’s...
Wednesday, 7 August 2013
Android SQLite Database Demo
Today we will discussed about SQLite Database in android.
android.database Package have all necessary classes for working with database. android.database.sqlite Package contains the SQLite related classes.
To extends the functionality of SQLite in your application we have to extends SQLiteOpenHelper.
This class have two methods
onCreate() – will create database for the first time.
onUpdate() – will be used to update the existing database....