Skip to main content

Android Reference Websites

Reference 1   -http://iserveandroid.blogspot.in/2010/11/using-canvas-to-draw-text-whereve-click.html
Reference 2 -   http://iserveandroid.blogspot.in/
Reference 3-http://iserveandroid.blogspot.in/2010/11/using-canvas-to-draw-text-whereve-click.html
Reference 4 -http://moorandroid.blogspot.com/
Reference 5-http://developer.android.com/
Reference 6-http://saigeethamn.blogspot.in/
Reference 7-http://www.bogotobogo.com/Android/android.php
Reference 8 -http://w2davids.wordpress.com/
Reference 9-http://www.techienjoy.com/Android-interview-questions.php
Reference 10-http://myandroidsolutions.blogspot.in/
Referebce 11-http://www.techgig.com/skillpage/Android/
Reference 12-http://blog.blundell-apps.com/
Reference 13-http://www.anddev.org/
Reference 14 - http://www.androidpeople.com/
Reference 15 -http://www.devdaily.com/java/jwarehouse/android-examples/platforms/android-2/samples/ApiDemos/src/com/example/android/apis/view/index.shtml
Reference 16 - http://www.mkyong.com/
Reference 17 - http://androidexperinz.wordpress.com/
Reference 18-http://learn-it-stuff.blogspot.in/
Reference 19 - http://androiddeveloperanduidesigner.blogspot.in/
Reference 20 -http://blogingtutorials.blogspot.in/
Reference 21 -http://devappandroid.com/
Reference 22-http://alucard1990.hubpages.com/
Reference 23-http://iamvijayakumar.blogspot.in
Reference 24-http://mindtherobot.com/blog/
Reference 25-http://andmob.wikidot.com/samplecode
Reference 26-http://stdioe.blogspot.in/
Reference 27- http://thinkandroid.wordpress.com
Reference 28- http://trivedihardik.wordpress.com/?ref=spelling
Reference 29- http://code4reference.com/android-tutorials/
Reference 30 -http://www.mubasheralam.com/tutorials/android/how-create-single-choice-list
Reference 31- http://www.codeofaninja.com/2012/01/android-sharedpreferences-example.html
Reference 32-http://wptrafficanalyzer.in/blog/loading-thumbnail-images-in-a-gridview-and-opening-original-images-in-alertdialog-using-media-content-providers/

Reference 33 -http://alchemiaandroid.altervista.org/
Reference 34- http://www.aviyehuda.com/2011/05/08/android-development-preferences/
Reference 35 - http://www.sourcecodester.com/android












Comments

Post a Comment

Popular posts from this blog

Circular Seek Bar - Example

MyView.java package com.rakesh.androidcircularseekbar; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapFactory; import android.graphics.Canvas; import android.graphics.Color; import android.graphics.Paint; import android.graphics.RectF; import android.util.AttributeSet; import android.view.MotionEvent; import android.view.View; public class MyView extends View {     /** The context */     private Context mContext;     /** The listener to listen for changes */     private OnSeekChangeListener mListener;     /** The color of the progress ring */     private Paint circleColor;     /** the color of the inside circle. Acts as background color */     private Paint innerColor;     /** The progress circle ring background */     private Paint circleRing;   ...

SSL pinning in Android - A brief discussion

HTTP protocol Communication between the client and a server typically non-encrypted or plain text while we use HTTP protocol.  Pitfall Any middle hacker can interrupt the connection between the client and server and manipulate the data as it involves no encryption. How to overcome this ? As the domain owner one can purchase a digital certificate from CA(Certificate Authority) who are considered as trusted.  A certificate will contain the Owner's name, public key , Issuer's(CA's) name,Issuer's(CA's) signature, domain details, expiry date etc . After the SSL/Leaf certificate is associated with a domain,the communication between client and server will be encrypted. Now the HTTP will become HTTPs. Note : Associating the SSL certificate means it enable the encryption between client and server but does not mean ,the domain owner will never misuse your personal information. How does SSL work ? Pitfall There is a problem here. Let's assume that there is a hacker comes i...

SQ Lite Concepts

reference : http://www.vogella.com/articles/AndroidSQLite/article.html Table of Contents 1. SQLite and Android 1.1. What is SQLite? 1.2. SQLite in Android 2. Prerequisites for this tutorial 3. SQLite Architecture 3.1. Packages 3.2. SQLiteOpenHelper 3.3. SQLiteDatabase 3.4. rawQuery() Example 3.5. query() Example 3.6. Cursor 3.7. ListViews, ListActivities and SimpleCursorAdapter 4. Tutorial: Using SQLite 4.1. Introduction to the project 4.2. Create Project 4.3. Database and Data Model 4.4. User Interface 4.5. Running the apps 5. ContentProvider and sharing data 5.1. ContentProvider Overview 5.2. Own ContentProvider 5.3. Security and ContentProvider 5.4. Thread Safety 6. Tutorial: Using ContentProvider 6.1. Overview 6.2. Create contacts on your emulator 6.3. Using the Contact Content Provider 7. Activities, Loader and ContentProvider 7.1. Activities and Databases 7.2. Loader 8. Tutorial: SQLite, own ContentProvider and Loader ...