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