Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于某种原因,我看不到代码行:
session = new Session.OpenRequest(this).setCallBack(statusCallBack)
它给了我一个Session.OpenRequest(myFragment)未定义的错误。有谁知道这是为什么以及我该如何解决?
Session.OpenRequest(myFragment)
发现我做错了什么。它必须是来自支持库的片段。我正在扩展常规片段类。
显然,Session.OpenRequest(Fragment fragment)构造函数应该工作。假设您已在项目中正确添加 Facebook SDK,请在您的类中组织导入以导入Session.OpenRequest该类。此构造函数似乎对您的代码不可见。
Session.OpenRequest(Fragment fragment)
Session.OpenRequest
如果您使用的是 Eclipse IDE,请按Ctrl++组织Shift导入O。
Ctrl
Shift
O