When I use prepare(); on my mediaplayer, a black layout pops up till the mediaplayer is prepared.. I want to change that black screens layout, is that possible?
prepare();
is a blocking operation, if you dont want to block your UI Thread use prepareAsync();
.
Or use prepare in another Thread