从 startActivityforResult 获取 resultcode -1 ,-1 意味着什么
在 Android Activity 中,如果返回的 resultcode 为 -1 ,则以下代码中的含义是什么
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
In an android activity if resultcode returned is -1 , what does it mean in the following code
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
resultCode 为 -1 映射到 Activity.RESULT_OK,所以你的活动返回成功。
A resultCode of -1 maps to Activity.RESULT_OK, so your activity is returning success.