在创建Intent时,mime类型“gagt / sdf”在android中意味着什么

时间:2014-12-07 13:41:08

标签: android mime-types mime

Intent fileintent = new Intent(Intent.ACTION_GET_CONTENT);
    fileintent.setType("gagt/sdf");
    try {
        startActivityForResult(fileintent, PICKFILE_RESULT_CODE);
    } catch (ActivityNotFoundException e) {
        Log.e("tag", "No activity can handle picking a file. Showing alternatives.");
    }

上面的代码段似乎神奇地启动了一个文件选择器。

我搜索了android开发者文档,但未找到任何解释。

为什么会起作用?

0 个答案:

没有答案