Saturday 19 October 2013

How to create an Android application


Read More

Splash Screen in android

Read More

You Tube Integration

Read More

Tuesday 15 October 2013

Image Gallery with Zoom and Pinch



Read More

Thursday 10 October 2013

How to create Database Using Wampserver


1. Install WampServer and run it.
2.Create Database as shown below



3.Then Create Table as Shown 



4.Create column and enter the name and value for that as shown below



PHP json_encode() function is used for encoding JSON in PHP. 

Normally used to get the data from table.




While executing, this will produce following result:



{

    "response": {
        "items": [
            {
                "sno": "1",
                "name1": "The work",
                "image1": "http://192.168.1.40/image/howto.jpg"
            },
            {
                "sno": "2",
                "name1": "delicious",
                "image1": "http://192.168.1.40/image/delicious.jpg"
            },
            {
                "sno": "3",
                "name1": "positive Thinking",
                "image1": "http://192.168.1.40/image/post.jpg"
            },
            {
                "sno": "4",
                "name1": "Step to sucess",
                "image1": "http://192.168.1.40/image/steps.jpg"
            },
            {
                "sno": "5",
                "name1": "Quran",
                "image1": "http://192.168.1.40/image/quran.jpg"
            },
            {
                "sno": "6",
                "name1": "The public domain",
                "image1": "http://192.168.1.40/image/thepublic.jpg"
            }
        ],
        "success": 1
    }
}



Read More

List View with Image

Read More

Saturday 28 September 2013

Software Required

               Software Required


Java JDK
Eclipse/intellij
Android SDK

SQLite Browser
Read More

Android Version

                           Android Version


                           Android began with the release of the Android beta in November 2007. The first commercial version, Android 1.0, was released in September 2008. Android is under ongoing development by Google and the Open Handset Alliance (OHA), and has seen a number of updates to its base operating system since its initial release.
On 3 September 2013, Google announced Jelly Bean's successor as Android 4.4, KitKat, with a release date yet to be announced.

 Android 1.0 (API level 1)
23 September 2008
Android 1.0, the first commercial version of the software, was released on 23 September 2008. The first commercially available Android device was the HTC Dream. 
 Android 1.1 (API level 2)
On 9 February 2009
On 9 February 2009, the Android 1.1 update was released, initially for the HTC Dream only. Android 1.1 was known as "Petit Four" internally, though this name was not used officially.
 Android 1.5 Cupcake (API level 3)
27 April 2009
On 27 April 2009, the Android 1.5 update was released, based on Linux kernel 2.6.27. This was the first release to officially use a codename based on a dessert item ("Cupcake"), a theme which would be used for all releases henceforth.
 Android 1.6 Donut (API level 4)
15 September 2009
On 15 September 2009, the Android 1.6 SDK – dubbed Donut – was released, based on Linux kernel 2.6.29

 Android 2.0 Eclair (API level 5)
On 26 October 2009
26 October 2009, the Android 2.0 SDK – codenamed Eclair – was released, based on Linux kernel 2.6.29.

 Android 2.0.1 Eclair (API level 6)
3 December 2009
 Android 2.1 Eclair (API level 7)
12 January 2010
Android 2.2–2.2.3 Froyo (API level 8)
20 May 2010
On 20 May 2010, the SDK for Android 2.2 (Froyo, short for frozen yogurt) was released, based on Linux kernel 2.6.32.

 Android 2.3–2.3.2 Gingerbread (API level 9)
6 December 2010
On 6 December 2010, the Android 2.3 (Gingerbread) SDK was released, based on Linux kernel 2.6.35.

 Android 2.3.3–2.3.7 Gingerbread (API level 10)
9 February 2011
Android 3.0 Honeycomb (API level 11)

22 February 2011
On 22 February 2011, the Android 3.0 (Honeycomb) SDK – the first tablet-only Android update – was released, based on Linux kernel 2.6.36.

Android 3.1 Honeycomb (API level 12)
10 May 2011
 Android 3.2 Honeycomb (API level 13)
15 July 2011
Most first- and second-generation Google TV-enabled devices utilize Honeycomb 3.2

 Android 4.0–4.0.2 Ice Cream Sandwich (API level 14

19 October 2011
The SDK for Android 4.0.1 (Ice Cream Sandwich), based on Linux kernel 3.0.1, was publicly released on 19 October 2011.

Android 4.0.3–4.0.4 Ice Cream Sandwich (API level 15)
16 December 2011
 Android 4.1 Jelly Bean (API level 16)
9 July 2012
Google announced Android 4.1 (Jelly Bean) at the Google I/O conference on 27 June 2012. Based on Linux kernel 3.0.31, Jelly Bean was an incremental update with the primary aim of improving the functionality and performance of the user interface

 Android 4.2 Jelly Bean (API level 17)
13 November 2012
Android 4.3 Jelly Bean (API level 18)
24 July 2013

Android 4.4 Kit Kat(API level 19)
Next Upcoming Version



Read More

Android

       Android is a stack of software for mobile devices which has Operating System, middleware and some key applications. Android  is a Linux-based operating system designed primarily for touchscreen mobile devices such as smartphones and tablet computers. Initially developed by Android, Inc. Google backed financially and later bought in 2005.
       
    Android is open source and Google releases the code under the Apache License. This open-source code and permissive licensing allows the software to be freely modified and distributed by manufacturers. Also Android has a large community of developers writing applications ("apps") that extend the functionality of devices. Application are written in Java Programming Language.

Features of Android.
Application framework enabling reuse and replacement of components.
Dalvik virtual machine optimized for mobile devices.
Integrated browser based on the open source WebKit engine.
Optimized graphics powered by a custom 2D graphics library; 3D graphics based on the OpenGL ES 1.0 specification.
SQLite for structured data storage.
Media support for common audio, video, and still image formats (MPEG4, H.264, MP3, AAC, AMR, JPG, PNG, GIF)
GSM Telephony (hardware dependent).
Bluetooth, EDGE, 3G, and WiFi (hardware dependent).
Camera, GPS, compass, and accelerometer (hardware dependent).
Rich development environment including a device emulator, tools for debugging, memory and performance profiling, and a plugin for the Eclipse IDE.
Read More