上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 40 下一页
摘要: 一个工具类js文件:util.js function formatTime(time) { return time;//这里没写逻辑 } module.exports = { formatTime: formatTime } 在page里面的引用 <script> var util = requir 阅读全文
posted @ 2024-05-21 17:21 听着music睡 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 问题现象: 正常显示默认的所有的图片,当点击切换相册的时候,相册的图片是空的 因为项目已经不再维护,故下载源码,import module到项目中 修复步骤: 1、MatisseActivity private void onAlbumSelected(Album album) { if (albu 阅读全文
posted @ 2024-01-17 16:46 听着music睡 阅读(222) 评论(0) 推荐(0) 编辑
摘要: 系统分享: // 系统转发方式 public static void shareBySystem(Context context,File file){ WxUtils.checkFileUriExposure(); Intent intent = new Intent(Intent.ACTION_ 阅读全文
posted @ 2024-01-05 14:26 听着music睡 阅读(24) 评论(0) 推荐(0) 编辑
摘要: 圆形进度条 支持设置: 1、圆环背景颜色 2、圆管背景宽度 3、进度圆环颜色 4、进度圆环宽度 5、圆环进度 6、开始角度 7、动画执行时间 自定义类: package com.example.mainactivty; import android.content.Context; import a 阅读全文
posted @ 2023-11-29 16:25 听着music睡 阅读(232) 评论(0) 推荐(0) 编辑
摘要: control+option+O 去除当前文件无用import option+command+L 格式化选中代码,重新排版 command+D 粘贴当前行或选中代码 command+C 复制当前行或选中代码 command+X 剪切当前行或选中代码 command+Y 删除行 command+/ 注 阅读全文
posted @ 2023-09-01 18:26 听着music睡 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 1、删除原来的插件 Android ButterKnife Zelezny 2、下载插件 3、进入用户下的library中google 找到该插件.jar文件,移动到用户下的应用程序->android studio->contents->plugns目录下 4、重启AS 阅读全文
posted @ 2023-09-01 15:29 听着music睡 阅读(161) 评论(0) 推荐(0) 编辑
摘要: startActivityForResult,onActivityResult 的进阶写法 定义一个自定义ActivityResultContract public class CommonIntentContract extends ActivityResultContract<Intent, I 阅读全文
posted @ 2023-05-16 15:16 听着music睡 阅读(205) 评论(0) 推荐(0) 编辑
摘要: 首先框架基本用法: new IntentIntegrator(StoreEditActivity.this).setPrompt(getResources().getString(R.string.qrcode_tip)) .initiateScan(); 发现识别不出vx的彩色二维码,解决方案增加 阅读全文
posted @ 2023-03-27 14:26 听着music睡 阅读(418) 评论(0) 推荐(0) 编辑
摘要: djl@djldeMacBook-Pro ecloud_retail % abd version zsh: command not found: abd 已确认安装adb成功 背景: zsh 也是一种 shell ,Unix 衍生系统的默认 的shell 都是 bash。从macOS Catalin 阅读全文
posted @ 2023-02-28 11:41 听着music睡 阅读(373) 评论(0) 推荐(0) 编辑
摘要: 一、adb的安装 1.创建.bash_profile文件 touch .bash_profile 2.打开.bash_profile文件 open -e .bash_profile 3.在.bash_profile文件添加SDK路径 SDK路径查看 Tools -> SDK Manager) exp 阅读全文
posted @ 2023-02-28 11:23 听着music睡 阅读(736) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 40 下一页