有没有人知道Android中的默认拨号器应用程序是否会返回任何可以在onActivityResult()函数中重写的数据?像这样的东西
//Button click:
startActivityforResult(new Intent(Intent.ACTION_CALL, Uri.parse("tel:" + number)), 0);
//OnActivityResult
if(resultCode == CALL_NOT_ANSWERED)
//do sth like try again
if(resultCode == VOICEMAIL_STARTED)
//bad luck
if(resultCode == CALL_ANSWERED)
//nice one
由于