Click here to Skip to main content
15,881,882 members
Please Sign up or sign in to vote.
1.00/5 (4 votes)
See more:
XML
Consider the code snippet below:
 MediaPlayer mp = new MediaPlayer();
 mp.setDataSource(PATH_TO_FILE);
 <Some code here>
 mp.start();

 Which of the following should be placed at <Some code here>?
    a.  mp.prepare();
    b.  mp.prepareAsync();
    c.  mp.loadMedia();
    d.  mp.loadSource();
    e.  mp.loadSource();
mp.prepare();
    f.  No code is required at <Some code here> to start playback.
Posted
Updated 17-Oct-12 0:00am
v2

We do not do your homework: it is set for a reason. It is there so that you think about what you have been told, and try to understand it. It is also there so that your tutor can identify areas where you are weak, and focus more attention on remedial action.

Try it yourself, you may find it is not as difficult as you think!
 
Share this answer
 
Comments
Ravinder Singh Choudhary 17-Oct-12 8:42am    
you have answer or not if yes then post other wise thanks
Akinmade Bond 3-Nov-12 9:41am    
CodeProject does not answer HOMEWORK.
this is true answer
a. mp.prepare();
b. mp.prepareAsync();

and this is not a home work this a coding or error .
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900