小编kun*_*hek的帖子

如何从android中的图库中选择视频图像

我有一个问题,我想在aNDROID中从图库中选择图像和视频我使用了以下代码但不成功.

  1. setType("*/*);
  2. setType("video/*");
  3. setType("image/*");
  4. setType("image/* , video/*");
  5. setType("image/* video/*");
  6. Intent = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); startActivityForResult(intent, 1);
  7. Intent i= new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); i.setType("*/*"); startActivityForResult(i, RESULT_LOAD_IMAGE);

android android-gallery

-1
推荐指数
1
解决办法
9234
查看次数

标签 统计

android ×1

android-gallery ×1