Activity的setResult方法
http://blog.csdn.net/dinglin_87/article/details/8970144
调用setResult()方法必须在finish()之前。
类似的如果在如下方法中调用setResult()也有可能不会返回成功: onPause(), onStop(), onDestroy().
- public void onBackPressed() {
- super.onBackPressed();
- Intent data = new Intent();
- data.putExtra("position", position);
- setResult(101, data);
- }