gpt4 book ai didi

android - 图像选择器 Intent 的后退按钮

转载 作者:行者123 更新时间:2023-11-30 03:15:14 26 4
gpt4 key购买 nike

当用户点击一个按钮时,它会打开一个图像选择器,但如果用户点击后退按钮,而不是返回到 Activity,它就会结束。这就是我启动图像选择器的方式:

        Intent photoPickerIntent = new Intent(
Intent.ACTION_PICK,
android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI);
photoPickerIntent.setType("image/*");

startActivityForResult(photoPickerIntent, PICK_FROM_FILE);

有什么线索吗?

最佳答案

是的,您可以通过这种方式在画廊或相机或任何其他设备上处理后退按钮。

@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data)
{
if (resultCode != RESULT_OK)
{
//Here you can handle,do anything you want
}
//other code
}

关于android - 图像选择器 Intent 的后退按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20250316/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com