Category:

Google map integration and permission update

Resolve issue Failed to load map. Error contacting Google servers. This is probably an authentication issue. It have problem with your API_KEY which is obtained from Google API Access ,so verify your API_KEY , certificate fingerprints and package name. If your API_KEY and certificate fingerprints and package name is correct and still get this issue Failed […]

Continue Reading
Posted On :
Category:

Multiselect spinner item in Android

In this tip i show you how we can select multiple item inside a spinner using checkbox in android. With the help of MultiSelectionSpinner class. Multiselect spinner Step 1. First add this class in your project which help you to achieve multiselect feature in your spinner. package com.mutiselect; import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; import android.content.DialogInterface.OnMultiChoiceClickListener; import android.util.AttributeSet; […]

Continue Reading
Posted On :
Category:

Get contact image using phone number in android

Last updated on May 26th, 2015 at 10:08 pmIn this tip learn how to get image from android contact list in your app. String imnage; Cursor phonesCursor; Urls urls; // Get image from phone no try { Uri phoneUri = Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(“Phone number”)); phonesCursor = context.getContentResolver().query(phoneUri, new String[]{ContactsContract.PhoneLookup.PHOTO_THUMBNAIL_URI}, null, null, null); } catch (NullPointerException e) […]

Continue Reading
Posted On :
Category:

Generate Hash Key For Facebook using code

Simple code to generate Facebook Hash Key for you android Application. Code to Generate Hash Key For Facebook using code – public static void showHashKey(Context context) { try { PackageInfo info = context.getPackageManager().getPackageInfo(“com.mypackagename”, PackageManager.GET_SIGNATURES); //Your package name here for (Signature signature : info.signatures) { MessageDigest md = MessageDigest.getInstance(“SHA”); md.update(signature.toByteArray()); Log.i(“KeyHash:”, Base64.encodeToString(md.digest(), Base64.DEFAULT)); } } catch […]

Continue Reading
Posted On :
Category:

Upload image using ajax jquery

In this tip i will help you  to upload image using  jQuery without using any other jQuery plugin. You can also check some other jQuery Tutorial’s. CODE First create new html file in your favorite  text editor and copy below code. Before start writing code add jQuery plugin or jQuery CDN. Created simple html form for uploading image. […]

Continue Reading
Posted On :