There is a restriction in `FragmentActivity.startForResult` ``` if (requestCode != -1 && (requestCode&0xffff0000) != 0) { throw new IllegalArgumentException("Can only use lower 16 bits for requestCode"); } ``` So, ids can not be applied.
There is a restriction in
FragmentActivity.startForResultSo, ids can not be applied.