ArchiveJune 2012

How to store the data in to the SD-card and to delete this stored data when the application is uninstalled in Android

H

For Guidance follow this link store file in to the sdcard use this code private File cacheDir; if (android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED)) cacheDir=new File(android.os.Environment.getExternalStorageDirectory(),"/Android/data/YOUR PACKAGE_NAME/files/"); else cacheDir=context.getCacheDir(); if(!cacheDir.exists()) cacheDir.mkdirs(); } If...

How to Integrate the Paypal in Android Application

H

Hi, Everybody know about paypal in real time . and this post may be helpful for you in you want to integrate paypal in your android application for any payment processes. Paypal REleased an API and Library for MObile Integration. You can integrate by using PAYPAL Mobile Libaraies. PayPal Mobile Library => PayPal MerchantSetupAdministrationGuide PayPal sandBOX Document => PayPal MOBILE...

How to resize image programmatically in iPhone

H

Hello friends, many times we need to resize the UIImage runtime according to the need of application.  Here is the function which changes the size of the image and returns a new resized image – (UIImage *)reSizeTheImage:(UIImage *)image convertToSize:(CGSize)size { UIGraphicsBeginImageContext(size); [image drawInRect:CGRectMake(0, 0, size.width, size.height)]; UIImage *destImage =...

Category