I have a requirement where upon clicking the launcher icon of my app, it should read out the app name.
I know it's a kind of funny, but is that possible? any directions?
I have a requirement where upon clicking the launcher icon of my app, it should read out the app name.
I know it's a kind of funny, but is that possible? any directions?
try this in the onCreate/onResume method of your activity: MediaPlayer
Just start the player
mp = new MediaPlayer();
mp.reset();
mp.setDataSource(fileNamePath);
mp.prepare();
mp.start();