摘要: #解决办法 #kotlin Integer.toHexString(itm.toInt() and(0xff)) #java Integer.toHexString(itm.toInt() & 0xff) #以下为引用内容,方便查阅 ##引自https://www.cnblogs.com/cvbak 阅读全文
posted @ 2020-10-09 14:07 王钰 阅读(1791) 评论(0) 推荐(0) 编辑
摘要: var str =Integer.toHexString(progress) // orderArr[3] = progress.toByte() //错误的写法 orderArr[3] = str.toInt(16).toByte() msg.text = if(str.length > 1) " 阅读全文
posted @ 2020-10-09 12:17 王钰 阅读(549) 评论(0) 推荐(0) 编辑
摘要: kotlin的三目运算 kotlin中不再有java中的三目运算格式,比如a>b?a:b 取而代之的是直接用if else模式 格式:if(a>b) a else b 阅读全文
posted @ 2020-10-09 12:14 王钰 阅读(5529) 评论(0) 推荐(0) 编辑
摘要: #工程目录 #垂直SeekBar实现代码 package com.okk.vcontroller import android.content.Context import android.graphics.Canvas import android.graphics.Rect import and 阅读全文
posted @ 2020-10-09 10:48 王钰 阅读(849) 评论(0) 推荐(0) 编辑