Android开发BUG录

2020-11-26  本文已影响0人  好学人

Adapter.notifyDataSetChanged无效

  1. 检查RecyclerView所持有的List是否有数据

  2. 排除代码问题,也可能为编译缓存问题,clean项目后就可能恢复正常。

接口请求不到数据

要看看是否为环境不对(测试环境与生产环境)。

@Url cannot be used with @POST URL

解决方案:删除@POST注解中的网址,拼接到@Url注解中的网址。

The error means exactly what it says, you can use POST(...) or @Url on a parameter, but not both at the same time. If you need to use @Url, remove the url from the @POST annotation. You will need to add the part of the url you had in the into your url parameter.

修改资源文件未生效

查看其它模块是否有同名文件,删除之即可。

上一篇下一篇

猜你喜欢

热点阅读