Posts by pokemon_cwb • 55 points
3 posts
-
1
votes1
answer581
viewsQ: Metodos de Intent para enviar email
Could someone please clarify the following code: Intent intent = new Intent(Intent.ACTION_SENDTO); intent.setType("text/plain"); intent.putExtra(Intent.EXTRA_SUBJECT, "Subject of email");…
androidasked pokemon_cwb 55 -
-2
votes3
answers705
viewsA: Pass parameter to the second Activity
You got that line wrong, buddy: Intent intent = new Intent(MainActivity.this, Activity_tela2.class); It must be so: Intent intent = new Intent(); intent.setClass(MainActivity.this,…
androidanswered pokemon_cwb 55 -
4
votes1
answer456
viewsQ: Save tts as audio file
How can I generate an audio file from a TexttoSpeech to share with other services (sms, Whats, messenger, ...)? I created this function to share private void shareAudio() { Intent intent = new…