I started in my app this activity
var RecordIntent= new Intent(RecognizerIntent.ActionRecognizeSpeech);
StartActivityForResult(RecordIntent, (int)ResultActivityCodes.SpeechResult);
and i have StopRecord function
void StopRecord()
{
SetResult(Result.Ok,RecordIntent);
FinishActivity((int)ResultActivityCodes.SpeechResult);
}
after execute StopRecord()
function called OnActivityResult(int requestCode, Result resultCode, Intent data)
why data has been null in OnActivityResult?
how to stop correctly my Activity that variable "data" was not null