faça uma ligação, clique em um botão

Estou tentando fazer uma ligação quando pressiono um botão no android

((Button)findViewById(R.id.button1)).setOnClickListener(new OnClickListener() {
  @Override
  public void onClick(View v) {
    String phno="10digits";

    Intent i=new Intent(Intent.ACTION_DIAL,Uri.parse(phno));
    startActivity(i);
  }
});

Mas quando corro e clico no botão, ocorre o erro

ERROR/AndroidRuntime(1021): android.content.ActivityNotFoundException: No Activity found to handle Intent { act=android.intent.action.CALL dat=9392438004 }

Como posso resolver este problema?

questionAnswers(13)

yourAnswerToTheQuestion