kotlin
爱乐写代码
要么去学习,要么被淘汰
展开
-
Android 10 NotificationManager不显示
1:问题:使用三方推送,在Android 10显示通知栏,有时显示有时不显示,略显尴尬2:解决:private fun processCustomMessage(context: Context, message: String) { val channelID = "1001" val channelName = "bs_notify" //点击通知跳转界面 val intent = Intent(context, BNoTitleW原创 2021-02-19 13:41:28 · 2050 阅读 · 0 评论 -
kotlin 异常错误汇总
1:kotlin.KotlinNullPointerException原因:定义变量或调用变量时使用了!!解决:不使用!!,用?代替2:Method return type must not include a type variable or wildcard原因:<*>导致解决:<Any>代替3:Parameter specified as non-null is null原因:某变量为非空元素解决:加上?即可4:Kotlin:Interface … do原创 2021-01-20 17:58:22 · 1186 阅读 · 0 评论 -
Gradle download:kotlin-compiler-embeddable-1.3.61 一直下载中,可能还失败
导言:有时候学习其他kotlin开源项目时,会偶尔出现这个问题,kotlin-compiler-embeddable一直下载中,特别慢,这时可能会受不了,因此不如直接用其他工具(迅雷)下载即可,节省时间异常解决1:打开https://mvnrepository.com/search?q=,输入kotlin compiler,点击kotlin-compiler-embeddable进入下载所需jar包,比如我这里是1.3.61版2:将下载jar放入对应目录如下链接,并重新打开Android stu原创 2020-11-09 09:31:10 · 2877 阅读 · 0 评论 -
Kotlin基础语法
导言: Kotlin:开发Android的官方语言,本文只是笔记1:方法定义: //函数-fun,名称-getHidePhoneNum,参数-phoneNum: String,返回-String fun getHidePhoneNum(phoneNum: String?): String? { ... return phoneNum } //函...原创 2018-07-02 12:25:29 · 1815 阅读 · 0 评论