AndroidAnnotations——OnActivityResult

OnActivityResult

Since AndroidAnnotations 2.7

This annotation is intended to be used on methods to receive results from an activity started withandroid.app.Activity.startActivityForResult(Intent, int)

The annotation value must be an integer constant that represents the requestCode associated with the given result.
这个注解用来接收由 android.app.Activity.startActivityForResult(Intent, int) 启动的activity的返回值,注解值必须是一个integer常量作为和返回结果相对应的requestCode。

The method may have multiple parameters :
方法可以有多个参数:
  • android.content.Intent that contains data returned by the previously launched activity
  • 一个 android.content.Intent参数,包含先前启动的activity返回的数据
  • An int or a java.lang.Integer to get the resultCode.
  • 一个 int或者java.lang.Integer 参数,获取 resultCode

Some usage examples of @OnActivityResult annotation :@OnActivityResult 注解的一些用例:

 @OnActivityResult(REQUEST_CODE)
 void onResult(int resultCode, Intent data) {
 }
 
 @OnActivityResult(REQUEST_CODE)
 void onResult(int resultCode) {
 }
 
 @OnActivityResult(ANOTHER_REQUEST_CODE)
 void onResult(Intent data) {
 }
 
 @OnActivityResult(ANOTHER_REQUEST_CODE)
 void onResult() {
 }
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值