创建Toast时出现错误“无法解析方法makeText”

时间:2020-03-05 22:06:30

标签: java android android-studio toast android-toast

当我在此处使用此代码

Toast.makeText(HomeActivity.this, ""+accountKitError.getErrorType().getMessage());

我收到一条消息无法解析方法'makeText。 这是我的代码:

@Override
public void onError(AccountKitError accountKitError) {
    Toast.makeText(HomeActivity.this, "+accountKitError.getErrorType().getMessage());
}

1 个答案:

答案 0 :(得分:1)

makeText方法采用三个参数:应用程序contexttext消息和用于烤面包的duration。它返回正确初始化的Toast对象。您可以使用show()显示敬酒通知,如以下示例所示:

Context context = getApplicationContext();
CharSequence text = "Hello toast!";
int duration = Toast.LENGTH_SHORT;

Toast toast = Toast.makeText(context, text, duration);
toast.show();

在您的情况下,您缺少durationshow(),请像这样添加它们,它将起作用:

Toast.makeText(
    HomeActivity.this, 
    ""+accountKitError.getErrorType().getMessage(),
    Toast.LENGTH_SHORT
).show();

此处是指向文档的链接,以获取有关Toasts的更多信息: https://developer.android.com/guide/topics/ui/notifiers/toasts#java