我使用代码
从嵌套的Fragment中调用图像选择器Intent intent = new Intent();
intent.setType("image/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Select Picture"), 1);
它正确显示了图像选择器,但是当我单击图像而不是显示嵌套片段时,它会显示父片段。有人知道为什么吗?从Parent到嵌套片段的传递是使用代码
完成的FragmentTransaction transaction = getChildFragmentManager().beginTransaction();
transaction.addToBackStack(null);
transaction.replace(R.id.parent_root, NestedFragment.newInstance());
transaction.commit();