我正在学习L Moroney所著的《 Firebase权威指南》一书中的示例。它具有以下代码:
public static Intent createIntent(Context context, IdpResponse
idpResponse)
{
Intent in = IdpResponse.getIntent(idpResponse);
in.setClass(context, SignedInActivity.class);
return in;
}
调用getIntent时出现错误-无法解析方法。在我看来,该方法以前就存在(因此书中的代码),但是已经过时了。
答案 0 :(得分:0)
现在有toIntent()
,但是那里的事物非常动态,语义现在可能完全不同。
答案 1 :(得分:0)
尝试一下,可能会起作用
return new Intent().setClass(context, SignedInActivity.class)
.putExtra(ExtraConstants.IDP_RESPONSE, response);