Phonegap打开文件对话框选择活动

时间:2015-04-22 08:28:40

标签: android cordova android-intent android-activity

我有phonegap应用。我想选择文件对话框可以让我选择活动,比如相机或者文件。 enter image description here

使用我当前的设置,它只会打开Documents活动以从中选择文件。

enter image description here

<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <action android:name="android.intent.action.EDIT" />
    <action android:name="android.intent.action.PICK" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter>
    <action android:name="android.intent.action.GET_CONTENT" />
    <category android:name="android.intent.category.DEFAULT" />
    <data android:mimeType="*/*" />
</intent-filter>

0 个答案:

没有答案