如何准确调出Android系统相册
android中如何调用系统相册?我只想调用系统相册,网上很多都说Intent intent = new Intent(); intent.setType("image/*"); 但这样除了调出来相册以外,还可能有文件管理、百度云等,但我只想要系统相册;另外还有说Intent picture = new Intent(Intent.ACTION_PICK,android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);这样也不行,在小米上直接调出了文件管理,而且每个手机上运行的结果都不太一样。
我想问,怎么直接调用系统相册? --------------------编程问答--------------------
final Intent intent = new Intent(Intent.ACTION_GET_CONTENT, null);--------------------编程问答-------------------- 那要看你系统图库的策略之类的东西了。 --------------------编程问答-------------------- 用这个
intent.setType("image/*");
Intent intent = new Intent(Intent.ACTION_PICK, null);--------------------编程问答-------------------- 除
intent.setDataAndType(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, IMAGE_UNSPECIFIED);
补充:移动开发 , Android