Android 使用自定义应用打开视频

Android open video with custom app

我的一个项目是为 android 开发视频播放器应用程序。

如图所示为红色区域

在我的例子中,我想展示我的视频播放器应用程序,就像这个红色区域应用程序显示的那样。我怎样才能做到这一点。有没有办法在 android.

中以编程方式执行此操作

您必须为播放视频的 activity 提及 intent 过滤器,以便其他应用可以看到它。

您可以在此处阅读更多相关信息 Allowing Other Apps to Start Your Activity

示例:

 <intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="video/*" />
        <data android:mimeType="application/sdp" />
 </intent-filter>

you can also see the answer given by @Michell Bak