当我在此处使用此代码
Toast.makeText(HomeActivity.this, ""+accountKitError.getErrorType().getMessage());
我收到一条消息无法解析方法'makeText。 这是我的代码:
@Override
public void onError(AccountKitError accountKitError) {
Toast.makeText(HomeActivity.this, "+accountKitError.getErrorType().getMessage());
}
答案 0 :(得分:1)
makeText
方法采用三个参数:应用程序context
,text
消息和用于烤面包的duration
。它返回正确初始化的Toast对象。您可以使用show()
显示敬酒通知,如以下示例所示:
Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;
Toast toast = Toast.makeText(context, text, duration);
toast.show();
在您的情况下,您缺少duration
和show()
,请像这样添加它们,它将起作用:
Toast.makeText(
HomeActivity.this,
""+accountKitError.getErrorType().getMessage(),
Toast.LENGTH_SHORT
).show();
此处是指向文档的链接,以获取有关Toasts的更多信息: https://developer.android.com/guide/topics/ui/notifiers/toasts#java