问题记录
文章平均质量分 61
问题记录整理
Aislli
这个作者很懒,什么都没留下…
展开
-
java.io.IOException: Invalid keystore format 签名异常
Failed to load signer "signer #1"java.io.IOException: Invalid keyst在 android studio 里通过 build-Generate Signed Bundle or APK 页面创建了一个签名文件,然后这个签名文件在 android studio 里使用能正常签名,但通过命令行签名时报了上面异常,签名失败。原创 2024-05-21 20:30:00 · 823 阅读 · 0 评论 -
Type inference failed: Not enough information to infer parameter T in fun <T: View!> findViewById(id
Type inference failed: Not enough information to infer parameter T in fun findViewById(id: Int): T!原创 2023-12-25 20:30:00 · 197 阅读 · 0 评论 -
org.gradle.api.ProjectConfigurationException: A problem occurred configuring project ‘:app‘.
Incremental java compilation is an incubating feature.FAILURE: Build failed with an exception.What went wrong:A problem occurred configuring project ‘:app’.> java.lang.NullPointerException (no error message)Try:Run with --info or --debug option to get m原创 2023-12-25 20:15:00 · 1593 阅读 · 0 评论 -
java.lang.IndexOutOfBoundsException: Inconsistency detected. Invalid view holder adapter
java.lang.IndexOutOfBoundsException: Inconsistency detected. Invalid view holder adapter positionViewHolder{25e06b25 position=11 id=-1, oldPos=-1, pLpos:-1 no parent}原创 2023-12-25 20:00:00 · 146 阅读 · 0 评论 -
kotlin dialog 异常全屏显示
关键在第 5 行,这里带?是有区别的,因为声明的 dialog 是可空的,这里因为已经在上面判空了,所以第 5 不写 dialog?不会报错,但是这样写布局会变成全屏的;要写成 dialog?.apply{} 才会符合预期。原创 2023-03-03 19:30:00 · 295 阅读 · 0 评论