Monday, December 31, 2012

11 Links for download Android ebook for beginner and pro

All ebooks will be downloaded from Mediafire


All download From Mediafire

For Beginning


BEGINNING
ANDROID™ APPLICATION DEVELOPMENT
Beginning Android Appication Development - Wei-Meng Lee
http://www.mediafire.com/?43g9rgzd2py396c

Android CookBook - Ian Darwin
http://www.mediafire.com/?7q5m1yd4wa90h43

Begging Android 4 - Grant Allen
http://www.mediafire.com/?d0sldbmcx9stdy3

Beginning Android 4 Games Development - Robert Green, Mario Zechner
http://www.mediafire.com/?nn8wcxjgsbozowt

Head First Android Development - Jonathan Simon
http://www.mediafire.com/?iq8n7grt2nu6m4v

Practical Android 4 Games Development - J. F. DiMarzio
http://www.mediafire.com/?2zkv7obn9wj2smf


Programming Android - Zigurd Mednieks
http://www.mediafire.com/?13u9b7shseu2bd1


For Pro


Professional Android Sensor Programming - Greg Milette, Adam Stroud
http://www.mediafire.com/?ei2w3u5t774q34c

Pro Android 4 - Satya Komatineni, Dave MacLean
http://www.mediafire.com/?dsebkb2b4b7ab1h

Advanced Android 4 Games - Vladimir Silva
http://www.mediafire.com/?nh5vq0jk5iqccdl

Pro Android media - Shawn Van Every
http://www.mediafire.com/?c83wjmum3r9e463

Pro Android Apps Performance Optimization - HervĂ© Guihot
http://www.mediafire.com/?aba5al9fa932za7


gfdgdfgdfgdffdfdBEGINNING
ANDROID™ APPLICATION DEVELOPMENT

3 How to use ImageButton in Android

From Developer.android.com: “Displays a button with an image (instead of text) that can be pressed or clicked by the user. By default, an ImageButton looks like a regular Button, with the standard button background that changes color during different button states. The image on the surface of the button is defined either by the android:src attribute in the XML element or by the setImageResource(int) method…”

In this tutorial, we show you how to use an ImageButton. Send a SMS automatically when click on the ImageButton.

Here is a result of this tutorial:

Android Custom ImageButton - Figure 2



This project is developed in Eclipse 4.2.0.
1. Make some ImageButton by XML Layout

Friday, December 28, 2012

2 How to use QuickContactBadge in Android


Widget used to show an image with the standard QuickContact badge and on-click behavior. Use the QuickContactBadge anywhere that displays friends or lists of contacts, enabling the user to interact with these individuals in other ways. You could also add your email and phone number to the Contacts and provide a QuickContactBadge within your application to give users a quick way to email, call, or message you
In this tutorial, we show you how to use a quick contact badge.  

Here is a result of this tutorial:

Android Custom QuickContactBadge - Figure 2

This project is developed in Eclipse 4.2.0.
1. Make some QuickContactBadges by XML Layout. One assign contact from email, one assign contact from phone number, and the last one assign contact by Uri.

Thursday, December 27, 2012

7 How to create custom Seekbar in Android


From Developer.android.com: “A SeekBar is an extension of ProgressBar that adds a draggable thumb. The user can touch the thumb and drag left or right to set the current progress level or use the arrow keys”

In this tutorial, we show you how to customize a seekbar control, use this seekbar to control with media volume of device.

Here is a result of this tutorial:

Android Custom SeekBar - Figure 2


This project is developed in Eclipse 4.2.0.
1. Make a custom Seekbar control by XML Layout

Wednesday, December 26, 2012

46 How to create custom Spinner Control in Android

From Developer.android.com: “Spinners provide a quick way to select one value from a set. In the default state, a spinner shows its currently selected value. Touching the spinner displays a dropdown menu with all other available values, from which the user can select a new one.”
Android Custom Spinner Control - Figure 1

In this tutorial, we show you how to customize a spinner with image, text

This project is developed in Eclipse 4.2.0.

1. First make xml main layout for app

1 How to create custom Textview with font type in Android


Textview: “Displays text to the user and optionally allows them to edit it.”

In this tutorial, we show you how to create custom text view with some attributes.
This project is developed in Eclipse 4.2.0.

Here is a result of this tutorial:

Android Custom TextView - Figure 3


1. Make some textviews by xml layout:

Monday, December 24, 2012

1 How to create custom Toggle Button in Android


From Developer.android.com: “A toggle button allows the user to change a setting between two state…”

In this tutorial, we show you how to customize a toggle button, add a click listener by a few different ways, and how to get the setOnCheckedChangeListener for this toggle button.

Here is a result of this tutorial:

Android Custom Toggle Button - Figure 1

This project is developed in Eclipse 4.2.0.
1. Make a custom toggle button by XML Layout

2 How to create custom Radio Button in Android


From Developer.android.com: "Radio buttons allow the user to select one option from a set…"

Radio buttons are usually grouped by RadioGroup. When one RadioButton within a group is selected, all others are automatically deselected.

In this tutorial, we show you how to customize a radio button with XML, add a click listener by a few different ways, and how to get the setOnCheckedChangeListener for each radio button.

Here is a result of this tutorial:

Android Custom Radio Button - Figure 3


This project is developed in Eclipse 4.2.0.
1. Make a custom RadioButton by XML Layout

Sunday, December 23, 2012

2 How to create custom Checkbox in Android


Checkboxes allow the user to select one or more options from a set. 
In this tutorial, we show you how to customize a checkbox, add a click listener by a few different ways, and how to get the setOnCheckedChangeListener for checkbox.


This project is developed in Eclipse 4.2.0.

Here is a result of this tutorial:
Android Custom CheckBox - Figure 3

1. Make a custom checkbox by XML Layout

Saturday, December 22, 2012

0 How to create custom Button in Android


From Developer.android.com: "A button consists of text or an icon (or both text and an icon) that communicates what action occurs when the user touches it."

In this tutorial, we show you how to display a custom button with image, add a click listener by a few different ways, when user click on the button, open an URL in your Android’s internet browser.

P.S This project is developed in Eclipse 4.2.0.

Here is a result of this tutorial:
Android Custom Button- Figure 3


1. Two ways to make a button:

1.1 Design in your XML layout: