Why doesn't Android Facebook interface work with Fragments?

前端 未结 5 565
粉色の甜心
粉色の甜心 2021-01-07 05:21

I\'m switching some Android Facebook code from an Activity to a Fragment. Prior to the switch everything worked fine, but now the

5条回答
  •  盖世英雄少女心
    2021-01-07 06:04

    I have downloaded the latest version of Facebook SDK and I have the same problem, the solution of gcl1 works fine but I have to do more things on activity result so I have made this on the parent activity:

    @Override
    public void onActivityResult(int requestCode, int resultCode, Intent data) {
        super.onActivityResult(requestCode, resultCode, data);
        if (mTargetFragment != null) {
            mTargetFragment.onActivityResult(requestCode, resultCode, data);
        }
    }
    

提交回复
热议问题