Android - 操作选择取消按钮
我正在使用在另一个问题中找到的以下代码来打开图像库,用户可以从中选择图像以加载到我的应用程序中。
startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI), SELECT_IMAGE);
但是,当内存中没有找到图像时,会显示一个空图库,没有取消按钮。有什么办法可以在视图中添加取消或后退按钮吗?
I am using the follow bit of code found in another question here to open a gallery of images from which the user can select an image to load into my app.
startActivityForResult(new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.INTERNAL_CONTENT_URI), SELECT_IMAGE);
However, when there are no images found in the memory, an empty gallery is shown, with no cancel button. Is there any way to have a cancel or back button in the view?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们无法添加返回或取消按钮,您可以执行以下操作。
您可以使用以下代码片段。
干杯...
We can not add back or cancel button instead what you can do is the following.
You can use following coding snippet.
Cheers...