所以我是android编程的新手。我正在尝试学习它,以便可以在大学项目中工作,该项目是在线食品订购应用程序。因此,作为新手,我指的是这个视频教程- https://www.youtube.com/watch?v=Ad41Bh704ms&list=PLaoF-xhnnrRW4lXuIhNLhgVuYkIlF852V
上载器使用的是Android Studio版本2.3.3,而我使用的是Android Studio 3.3.1。因此,我知道这里和那里的更改很少。现在,我被困在那版毕加索的变化中。...
我和他一样使用了精确的代码组,但是对我来说,它在“加载”时出错 enter image description here
这就是它的意思- enter image description here
我在build.gradle中添加了此版本的毕加索作为依赖项。 enter image description here 有人可以帮我吗?什么可能会触发“加载”中的错误,我该如何解决?预先感谢
答案 0 :(得分:5)
这只是一个错字。不用写
Picasso.with(getBaseContext().load(food.getImage())).into(food_image);
使用
Picasso.with(getBaseContext()).load(food.getImage()).into(food_image);
答案 1 :(得分:0)
您在那边输入错误。必须关闭已启动的方法。您输入的内容:
Picasso.with(getBaseContext().load(food.getImage())).into(food_image);
应该是什么
Picasso.with(getBaseContext()).load(food.getImage()).into(food_image);
^
检查是否启动了with()
方法,并且没有关闭它。