2013-02-26 76 views

回答

0
Intent out = new Intent(); 
    out.setAction(Intent.ACTION_CALL); 
    out.setData(Uri.parse("tel:" + Uri.encode("+456"))); 
    startActivity(out); 


<uses-permission android:name="android.permission.CALL_PHONE"/>