若彬的Blog

导航

2024年1月10日 #

VSCode快捷键(MAC版本)

摘要: 光标移动 移动到单词的最前面:option + ← 移动到单词最末尾:option + → 将当前行代码移动到上一行:option + ↑ 将当前行代码移动到下一行:option + ↓ 移动到当前行最前面:cmd + ← 移动到当前行最末尾:cmd + → 花括号之间跳转:cmd + shift 阅读全文

posted @ 2024-01-10 15:18 剑指明月 阅读(204) 评论(0) 推荐(0) 编辑

All Android Key Events for usage with adb shell

摘要: { "key_events": { "key_unknown": "adb shell input keyevent 0", "key_soft_left": "adb shell input keyevent 1", "key_soft_right": "adb shell input keyev 阅读全文

posted @ 2024-01-10 11:59 剑指明月 阅读(8) 评论(0) 推荐(0) 编辑

2023年3月6日 #

透明度百分比与十六进制对应表(附Java转换算法)

摘要: for (double i = 1; i >= 0; i -= 0.01) { i = Math.round(i * 100) / 100.0d; int alpha = (int) Math.round(i * 255); String hex = Integer.toHexString(alph 阅读全文

posted @ 2023-03-06 17:25 剑指明月 阅读(159) 评论(0) 推荐(0) 编辑