Activity的setResult方法
http://blog.csdn.net/dinglin_87/article/details/8970144

调用setResult()方法必须在finish()之前。
类似的如果在如下方法中调用setResult()也有可能不会返回成功: onPause(), onStop(), onDestroy().

  1. public void onBackPressed() {  
  2.     super.onBackPressed();  
  3.       
  4.     Intent data = new Intent();  
  5.     data.putExtra("position", position);  
  6.     setResult(101, data);  

Activity的setResult方法

相关文章:

  • 2021-07-20
  • 2022-12-23
  • 2021-10-21
  • 2022-02-13
  • 2022-12-23
  • 2021-10-07
  • 2021-10-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-14
相关资源
相似解决方案