Kotlin
Mr_ChenXu
不畏将来,不将就
展开
-
Kotlin 主构造、次构造、super、this
Kotlin 主构造、次构造、super、this主构造就是在声明类加constructor的方法次构造就是不是在声明类加constructor的方法open class Father { constructor(name: String) { println("$name Father一个参数的构造方法") } constructor(name: String, age: Int) { println("$name Father两个参数的构造方原创 2021-01-18 23:04:21 · 1429 阅读 · 0 评论 -
Kotlin:FlowLayout横向流式自定义布局
package com.chenxh.flowlayoutimport android.content.Contextimport android.content.res.Resourcesimport android.graphics.Canvasimport android.icu.util.Measureimport android.util.AttributeSetimport android.util.Logimport android.util.TypedValueimport原创 2021-01-13 12:49:34 · 3460 阅读 · 2 评论 -
Kotlin学习笔记(一)
过去与现在我开发Android的IDE从Eclipse过渡到Android Studio。 现在连编程语言也是将要从Java变到了Kotlin了。 现在时代和技术不断在变,Google亲儿子语言Kotlin的诞生,到现在也逐渐壮大,官网(http://kotlinlang.org/)的介绍也是吊炸天,不过和Java100%兼容还是不错的。只能力求Kotlin牛逼一点,带我飞,面向的...原创 2018-05-23 17:51:12 · 341 阅读 · 0 评论 -
Android 之Kotlin开发 不懂搞搞
一、在Activity下声明Intent,居然提示”Accidental override: The following declarations have the same JVM signature”图片 解释:说的是超类中已经声明了这个intent,所以只要将intent这个对象名重命名即可。private val intentService: Intent? = null...原创 2018-08-08 14:35:52 · 3280 阅读 · 0 评论