ByteArrayOutputStream baos = new ByteArrayOutputStream();
bitmap.compress(Bitmap.CompressFormat.JPEG,100,baos);
byte[] b = baos.toByteArray();
String outputString = new String (Base64.encode(b,resultCode...
Monday, May 27, 2013
May 27, 2013
Bitmap to Base64 conversion
Wednesday, May 22, 2013
May 22, 2013
Android versus HTML5

Native Apps:
Integrated deep hardware integration
Supports latest hardware innovations
native look and feel.
Broader access to device hardware
Closer integration to system features
Ability to integrate with other apps
faster, smoother and more attractive.
Web Apps:
Universal...
Thursday, May 2, 2013
May 02, 2013
Get Gps Coordinates in android
package com.example.gps;import android.location.Location;
import android.location.LocationManager;import android.location.LocationListener;import android.os.Bundle;
import android.content.Context;import android.widget.TextView;import android.widget.Toast;import android.app.Activity;
public class MainActivity extends Activity { private Context context; double latitude; ...