Wednesday, 27 November 2013

Technical Skill Representation Using Impress.js

1 comment
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...
Read More...

Wednesday, 14 August 2013

Registration Activity Using Shared Preference Android

3 comments
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...
Read More...

Saturday, 10 August 2013

Android Admob Sample Code

1 comment
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. ...
Read More...

Thursday, 8 August 2013

Mobile Development–Native v/s PhoneGap?

1 comment
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...
Read More...

Wednesday, 7 August 2013

Android SQLite Database Demo

1 comment
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....
Read More...

Tuesday, 6 August 2013

PhoneGap Application – “Words of Wisdom”

1 comment
    "Words Of Wisdom" is a motivational and inspirational application covering each and every aspect of an individual’s life that requires continuous source of motivation and correct guidance in order to live a happy and a meaningful life. Inspiration comes in many forms to people. Some individuals respond to books, while other might respond to stories, movies, reflections or autobiographies from various well-known leaders...
Read More...

Sunday, 4 August 2013

Delete Row Item in ListView Android

2 comments
Today I will display how to delete row item from List in android. In this project I will be having list, on long press of item  an alert dialog box will pop out asking you for confirmation with having Yes and Cancel Button. Step 1:- create activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent"    ...
Read More...

Saturday, 3 August 2013

Search Bar in ListView Android

1 comment
We have made list many a time’s in android, in this tutorial I will be adding search bar functionality to the ListView. In this project I have added a search bar above the list. ListView will be filtered on the basis of text added on the search bar. It is useful where you have a  long list. Step 1:- create activity_main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"    ...
Read More...

Android Slide Animation Effect Between Page Transition

Leave a Comment
Today I am going to make a demo project on slide animation effect between page transition Step 1 :- Create anim folder under res folder Step 2:- In anim folder create two xml file, anim_in.xml <?xml version="1.0" encoding="utf-8"?>     <set xmlns:android="http://schemas.android.com/apk/res/android">     <translate     android:fromXDelta="-100%"     android:toXDelta="0"     android:duration="1250" /> </set> anim_out.xml <?xml...
Read More...

Android Fade in and Fade out Animation Effect between page Transition

Leave a Comment
Android Comes with pretty cool animation, today I am going to discuss how to do fade in and fade out transition between the pages. Step 1 :- Create anim folder under res folder Step 2:- In anim folder create two xml file, fadein.xml <?xml version="1.0" encoding="utf-8"?> <alpha xmlns:android="http://schemas.android.com/apk/res/android"    android:interpolator="@android:anim/accelerate_interpolator"    android:fromAlpha="0.0" android:toAlpha="1.0" android:duration="2000" /> fadeout.xml <?xml...
Read More...

Friday, 2 August 2013

Image ListView in Android

1 comment
Today I will discussed how to make Image ListView in android. I have made a demo project named ImageListView.Step 1:- create activity_main.xml,  in this xml I have defined how image and text will come with respective to each other.Step 2:- the image used in the project is in the drawable folder. Please put image in your drawable folder before you are going to refer them.Step 3:- This is how my main.java lookspackage com.example.imagelistview;import...
Read More...