Intent.setType()返回所有类型的文件android

时间:2013-12-04 15:11:36

标签: android android-intent

我试图通过意图从不同的应用程序中获取图片。

我使用以下代码:

    Intent intent = new Intent("android.intent.action.GET_CONTENT");

    intent.addCategory("android.intent.category.OPENABLE");
    intent.setType("image/*");

有趣的是,这在google nexus 7 android 4.4上运行良好 但对于其他设备(android 4.2.2),它允许我选择各种文件,如视频和.docx

我可以建议为什么会这样。

由于

编辑: 要清楚 我期待的是它应该限制我选择图像类型以外的文件。但这种情况并没有发生。

2 个答案:

答案 0 :(得分:1)

final static int IMPORT_PICTURE = 10001;
Intent intent = new Intent();
intent.setType("image/*"); //For specific type add image/jpeg
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), IMPORT_PICTURE);

答案 1 :(得分:0)

我发现这对我有用:

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;

public class StackOverflowAppActivity extends Activity {
    private final int PICK_IMAGE = 0;

    /** Called when the activity is first created. */
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        Intent i = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
        startActivityForResult(i, PICK_IMAGE);


    }

    @Override
    protected void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);

        switch (requestCode) {

        case PICK_IMAGE:
            if (resultCode == RESULT_OK) {
                // do your thing
            }
        }
    }
}

这是here evilone

取自{{3}}的解决方案