在默认的intent-app中设置应用程序

时间:2016-08-31 10:47:40

标签: android android-intent

我在Android中编写自己的播放器,但在应用程序的某些部分,我需要让用户选择自己的视频播放器。例如,当用户点击视频时,在我的应用程序中,我需要显示一个Intent来弹出并允许用户选择它最喜欢的视频播放器,当然,我的视频播放器旁边。

1 个答案:

答案 0 :(得分:2)

您需要为您的活动设置适当的intent-filter。它应该是这样的:

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