I have created a basic app which displays an image and also plays a song. I have typed the code below. The app plays the song once. I would like it to play it in a loop. I have added the song to a raw folder in res. I have named the song as happy. I have declared it in MediaPlayer as hbds.
public class MainActivity extends AppCompatActivity {
MediaPlayer hbds ;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
hbds = MediaPlayer.create(MainActivity.this,R.raw.happy);
hbds.start();
setContentView(R.layout.activity_main);
}
}