I\'d like to see my app in the list of player (\"continue action using...\") that pops up when I try to open an audio file (ie. from file browser or gmail attachment).
Here
@Override
protected void onCreate(Bundle savedInstanceState)
{
if (Intent.ACTION_VIEW.equals(getIntent().getAction()))
{
File file = new File(getIntent().getData().getPath());
// do what you want with the file...
}