上一页 1 2 3 4 5 6 7 ··· 15 下一页
摘要: 自定义View: package top.lc951.myandroid.views; import android.content.Context; import android.content.res.TypedArray; import android.graphics.Canvas; imp 阅读全文
posted @ 2022-08-03 15:37 lichong951 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 比较小众的技术点,准备用来搞项目开发用的,一般不直接对外开放哈!纯属笔记类。可忽略的。。。 NFC 近场通信(Near Field Communication,简称NFC),是一种新兴的技术,使用了NFC技术的设备(例如移动电话)可以在彼此靠近的情况下进行数据交换,是由非接触式射频识别(RFID)及 阅读全文
posted @ 2022-08-03 09:12 lichong951 阅读(158) 评论(0) 推荐(0) 编辑
摘要: 字体文件比较多,也比较大,有兴趣的私信笔者单发各位 自定义MarkTextDrawable: package top.lc951.myandroid.views; import android.content.Context; import android.graphics.Bitmap; impo 阅读全文
posted @ 2022-08-02 15:50 lichong951 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 自定义CircleDrawable: package top.lc951.myandroid.views; import android.content.Context; import android.graphics.Bitmap; import android.graphics.BitmapSh 阅读全文
posted @ 2022-08-02 10:00 lichong951 阅读(33) 评论(0) 推荐(0) 编辑
摘要: 配置threejs-miniprogram环境 搭建node环境 初始化node工程 npm init 导入threejs-miniprogram npm i threejs-miniprogram 注意:安装threejs-miniprogram 后一定要进行 构建npm 否则引用不生效。由于开发 阅读全文
posted @ 2022-08-01 19:00 lichong951 阅读(32) 评论(0) 推荐(0) 编辑
摘要: 自定义BitmapChangeView: package top.lc951.myandroid.views; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas 阅读全文
posted @ 2022-07-29 09:00 lichong951 阅读(148) 评论(0) 推荐(0) 编辑
摘要: 自定义裁剪类CropImageView: package top.lc951.myandroid.views; import android.content.Context; import android.graphics.Bitmap; import android.graphics.Canvas 阅读全文
posted @ 2022-07-28 09:00 lichong951 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 图像转换封装工具类BitmapUtil: /** * 图片位图转换工具 * * @author lichong * 2022年07月26日15:35:16 */ public class BitmapUtil { public static final String TAG = BitmapUtil 阅读全文
posted @ 2022-07-27 08:42 lichong951 阅读(16) 评论(0) 推荐(0) 编辑
摘要: 自定义RippleImageView继承原生ImageView,代码如下: package top.lc951.myandroid.views; import android.annotation.SuppressLint; import android.content.Context; impor 阅读全文
posted @ 2022-07-26 14:44 lichong951 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 自定义装饰ImageView类:DecorateImageView public class DecorateImageView extends ImageView { private Paint mPaint=new Paint(); private int mWidth,mHeight; pri 阅读全文
posted @ 2022-07-25 16:50 lichong951 阅读(24) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 15 下一页