[android-developers] Re: how to crop an image in android 2.x

2010-02-15 Thread Tuhin subhra
Bitmap bitmapOrg = BitmapFactory.decodeFile(Location_Image.filename); int width = bitmapOrg.getWidth(); int height = bitmapOrg.getHeight(); int newWidth = 200; int newHeight = 200; // calculate the scale - in

[android-developers] need to send audio file during a call

2010-02-11 Thread Tuhin subhra
I have an app through which I can make a call to a number. What I want is to send an prerecorded message or audio file which the receiver will hear once he receive the call. Can any one help me.? here is my code... package com.DialANumber; import android.app.Activity; import