maketext专题

关于Toast.makeText()用法的简单说明

Toast.makeText(this, "You clicked Add", Toast.LENGTH_SHORT).show(); Toast的用法很简单,通过静态方法makeText()创建出一个Toast对象,然后调用show()将Toast显示出来。 在makeText()方法中有三个参数,第一个是Context,是Toast的上下文,由于活动本身就是一个Context对象,使用当前

android错误:The method makeText(Context, CharSequence, int) in the type

错误提示:The method makeText(Context, CharSequence, int) in the type Toast is not applicable for the arguments (new View.OnClickListener(){}, String, int) 错误原由:在makeText的第一个参数Context指的是上下文对象,而此处上下文并不是该Ac