ArchiveMay 2014

How to Login via Facebook,get facebook friendlist and their details, post on friends wall and get newsfeeds details

H

How to Login with Facebook: follow the below steps to add login via facebook: step1: register app on developers.facebook.com step 2: get the app_id , add it to strings file and add following code to manifest file: <meta-data android:name=”com.facebook.sdk.ApplicationId” android:value=”@string/app_id” /> //add meta-data inside appication tag. <activity...

Loading image from url using AQuery

L

Download android-query.jar from below link:   Add following code where you want to load image : public ImageLoader imageLoader; imageLoader = new ImageLoader(this); AQuery androidAQuery=new AQuery(getApplicationContext()); androidAQuery.id(ImageView).image(url, true, true, 100,default_pic);   Note: if you dont want to store image in cache memory set true parameters to false.  ...

Category