美文网首页
Android开发BUG录

Android开发BUG录

作者: 好学人 | 来源:发表于2020-11-26 11:47 被阅读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.

    修改资源文件未生效

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

    相关文章

      网友评论

          本文标题:Android开发BUG录

          本文链接:https://www.haomeiwen.com/subject/cmsaiktx.html