I used the following code to capture text and share.
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
String texto = "Olá sou um texto compartilhado"
sendIntent.putExtra(Intent.EXTRA_TEXT, texto);
sendIntent.setType("text/plain");
startActivity(sendIntent);
When I ran the first time it correctly opened the share containing all applications. When I run it again it goes straight to the app I chose the first time. It's as if he's been saved. But I want it to always open the share to choose. How do I resolve this?