Dray
Dray

Reputation: 1954

android video player with play and pause

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 buttons. kindly post some codes. I am beginner.

thanks a lot to spend your time here. thanks in advance.

Upvotes: 0

Views: 1118

Answers (1)

Andro Selva
Andro Selva

Reputation: 54322

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)));

Upvotes: 2

Related Questions