hi,
I tried a simple mediaplayer application, just to run a .3gp file.
First, i put the .3gp file in "Raw" folder and tried to run, but
nothing is displaying, just blank screen only.... please guide me,
where i am going wrong. I dont have any xml file, is it needed ??
heres the code, which i am trying
import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
public class MonsterEntry extends Activity {
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
MediaPlayer mediaplayer = MediaPlayer.create(this, R.raw.monster);
mediaplayer.start();
}
}
Thanks
Nithin




