我想将我的应用用作浏览器,但只有链接来自图片(jpg,png,jpeg ...)。
我知道我可以按hosts
进行过滤,但我不知道是否可以按文件扩展名进行过滤。
有办法吗?
编辑:mimeType
不适用于http/https
网址。
答案 0 :(得分:1)
您可以在意图过滤器中添加mimeType过滤器。
类似的东西:
<intent-filter . . . >
<data android:mimeType="image/jpeg" />
</intent-filter>
您也可以使用*作为子卡匹配的外卡
参考:http://developer.android.com/intl/es/guide/topics/manifest/data-element.html