我遵循本教程:https://developers.facebook.com/docs/android/share-dialog/
但我不知道此代码中的变量“callback”在哪里:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
uiHelper = new UiLifecycleHelper(this, callback);
uiHelper.onCreate(savedInstanceState);
我不知道它是什么。它没有在教程中的任何地方声明 我需要帮助!
答案 0 :(得分:1)
UiLifecycleHelper
的第二个参数属于Session.StatusCallback
,在first part of the tutorial中定义。它位于步骤2:设置身份验证更改触发器下我相信。