I am developing an application , in which the items are to be display in a list, and while selecting the particular item, its video should be play. please suggest me how to do this. I need video player with play and pause but开发者_如何学Gotons. kindly post some codes. I am beginner.
thanks a lot to spend your time here. thanks in advance.
This will simply redirect you to native video player, which by default has the ability to pause and play.
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(//provide working url here)));
精彩评论