我的Toast无法在顶部显示。
下面的代码仍然在底部打印吐司。我做错什么了吗?
falseButton.setOnClickListener { view: View ->
val toast = Toast.makeText(
this,
"Incorrect",
Toast.LENGTH_SHORT)
toast.setGravity(Gravity.TOP, 0, 0)
toast.show()
}
谢谢你的帮助。
Toast mytoast= Toast.makeText(getApplicationContext(), "Toast Message", 1);
mytoast.setGravity(Gravity.TOP);
mytoast.show();
这应该适用于当前活动。