Audio Insertion
1. Add audio into res -> raw folder
2. In Activity class, add the below code to your class where you wish to play sound -
2. In Activity class, add the below code to your class where you wish to play sound -
MediaPlayer ring = MediaPlayer.create(MainActivity.this, R.raw.applause);
ring.start();
Comments
Post a Comment