GithubHelp home page GithubHelp logo

Comments (3)

abhndv avatar abhndv commented on May 16, 2024

Override onActivityResult on Parent Activity and call child fragments onActivityResult inside it

@Override
public void onActivityResult(int requestCode, int resultCode, Intent data) {
List<Fragment> fragments = getSupportFragmentManager().getFragments();
if (fragments != null) {
for (Fragment fragment : fragments) {
fragment.onActivityResult(requestCode, resultCode, data);
}
}
}

You should use getFragmentManager if you are not using Support Fragments

from piximagepicker.

ahmermughal avatar ahmermughal commented on May 16, 2024

@abhinanduN Hi can you give sample code of the fragment? I am stuck on the same issue.
I am confused as to from where to call getParentFragment().startActivityForResult();
Please elaborate.
Thanks

from piximagepicker.

abhndv avatar abhndv commented on May 16, 2024

Hi @ahmermughal . Sorry for the late reply . I think i meant, use either of those 2.
I don't remember about it clearly. But checking one of the old project i found i used the method of overriding the onActivityResult ,just as i said in the previous comment.
That's the code inside the parent. In child fragment you don't have to change anything in onActivityResult. Hope it helps

from piximagepicker.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.