. f September 2012 ~ Android Developers Blog

Tuesday, 25 September 2012

FourSquare Integration in android

Hello All, Here are the steps to integrate foursquare in your android application. 1. Creation of application and getting the client secret key for testing.      https://developer.foursquare.com/ 2. Now import the below source code into your workspace and run     the application.   1. MainActivity package...

Sunday, 23 September 2012

bitmap - How to scale down the image for better quality on Android

Hello Friends, How to scale down the image with better quality , without affecting the image  Aspect Ration ? I am sharing my android | java code with the help of which we can easily scale down the image . Note: Here in my function i am passing...

Crop image in circular shape in android

Hello Friends, Have you searching for cropping an image and convert it into circular shape ??? Following function will helps you to convert an image into circular shape. Note: I am passing my image in bitmap format as a parameter in a function. /* * Making image in...

Friday, 14 September 2012

Android Facebook Integration

Hello Friends,                This tutorial is about integrating facebook into your android                   application.                                      Step 1: Registering Your Facebook Application:                Go to facebook developer app site and Create the application.                create new facebook application and fill...

Friday, 7 September 2012

PayPal Integration in Android

Android PayPal Integration   Hello Friends,    Today , I am going to share the Paypal integration steps in your    android application.          (1) create account in sandbox environment:         Go to this link-Here        In...

Monday, 3 September 2012

Check Network Connection in Android

Check Network Connection in Android Hello Friends, Note: Declare following network permission in your              Androidmanifest.xml file:             <uses-permission android:name="android.permission.INTERNET" />     <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />    1. MainActivity.java package com.mukesh.networkcheck; import com.mukesh.netwoekcheck.R; import android.net.ConnectivityManager; import android.os.Bundle; import android.app.Activity; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface;...

 

Copyright @ 2013 Android Developers Blog.