从嵌套片段调用图像选择器

时间:2014-11-01 15:52:55

标签: android android-fragments

我使用代码

从嵌套的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();

0 个答案:

没有答案