其他分享
首页 > 其他分享> > android – 播放视频文件的最佳方式?

android – 播放视频文件的最佳方式?

作者:互联网

我有一个视频文件的URL,我需要使用手机的原生视频播放器播放.
我想使用Intent.ACTION_VIEW并将URI设置为Intent数据,我能够在HTC英雄之外实现上述G1.在Hero的情况下,我必须在Intent中显式设置类Name以启动默认的Video Player:intent.setClassName(“com.htc.album”,“com.htc.album.ViewVideo”);

但是,我对这种方法并不满意,因为它可能在其他Android设备上破坏.请咨询:
1.无论手机如何,通过Intent播放此视频网址的最佳方式是什么?
2.如何在Intent中有条件地设置ClassClass,特定于手机?

注意:为我们的应用程序编写独立的视频播放器不是我们目前可以承受的选项.

谢谢!

解决方法:

Note: Writing a standalone Video
Player for our app is NOT an option we
can afford at the moment.

首先,视频播放器是not part of the SDK,依赖它是一个很大的错误,正如你已经发现的那样.

其次,创建一个简单的视频播放器需要大约40 lines of code,并且你已经花了更多的时间来避免编写那些仅用于编写第一行的40行代码.

标签:android-video-player,android,android-intent
来源: https://codeday.me/bug/20190726/1546961.html