本文主要是介绍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指的是上下文对象,而此处上下文并不是该Activity。。。你必须使用 自己的Activity.this如我的是Toast.makeText(MainActivity.this, "已经到了第一周", Toast.LENGTH_SHORT).show() ;
这篇关于android错误:The method makeText(Context, CharSequence, int) in the type的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!