0

根据我的研究,支持将过滤器应用于 Activity 的文件类型就足够了,

<intent-filter>
          <action android:name="android.intent.action.VIEW"/>
          <category android:name="android.intent.category.DEFAULT"/>
          <category android:name="android.intent.category.BROWSABLE"/>

          <data android:scheme="https" android:host="*" android:pathPattern=".*\\.filetype"/>
          <data android:scheme="http" android:host="*" android:pathPattern=".*\\.filetype"/>
          <data android:scheme="file" android:host="*" android:pathPattern=".*\\.filetype"/>
          <data android:scheme="content" android:host="*" android:pathPattern=".*\\.filetype"/>
</intent-filter>

但它不适用于电子邮件附件。当尝试打开附件时,它只显示一条消息,即找不到此文件类型的支持应用程序。

这段代码适用于电子邮件附件,

<intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />

                <data android:pathPattern=".*\\.fileType" />
                <data android:host="*" />
                <data android:mimeType="application/*" />
</intent-filter>

但是对于这个过滤器,我的应用程序会出现在任何类型的文件类型中。

所以我的问题是,

1.用我的应用打开电子邮件附件的正确方法是什么?这样 myapp 会尝试仅针对特定的文件类型打开。

4

1 回答 1

0

您需要一个启动器默认启动基于类型。

<meta-data
            android:name="android.support.PARENT_ACTIVITY"
            android:value="com.gosylvester.bestrides.ImageTextListViewActivity" />

        <intent-filter>
            <action android:name="android.intent.action.VIEW" />

            <category android:name="android.intent.category.LAUNCHER" />
            <category android:name="android.intent.category.DEFAULT" />

            <data android:mimeType="application/vnd.google-earth.kml+xml" />
        </intent-filter>
    </activity>
于 2013-10-25T16:16:17.740 回答