brought here is the code for making a phone call from my Activity
public void makeAPhoneCallWithSpeakerOn()
{
String uri = "tel:" + posted_by.trim() ;
Intent intent = new Intent(Intent.ACTION_CALL);
intent.setData(Uri.parse(uri));
startActivity(intent);
}
question is:
how can I make the phone call and turn the speaker on?
10X Elad