摘要:
wxWidgets 的进度条控件没有提供改变颜色的接口,在Windows中,我们实际上可以通过向控件发送消息来间接的实现这个功能 Windows自己的进度条控件有以下三种状态 用类似下面的代码即可控制进度条显示绿红黄三种颜色 SendMessage(m_gauge1->GetHWND(), PBM_ 阅读全文
摘要:
如标题所示,这个是在编译AOSP的时候可能会遇到的警告。这个错有两种情况: 在 Ubuntu24.04 上编译 根据链接 https://groups.google.com/g/android-building/c/DbDKuaIik3M 所说,ubuntu24.04上的一些修改,会导致编译时遇到这 阅读全文
摘要:
使用java进行 RSA/ECB/PKCS1PADDING 是非常方便的,例如下面的示例 public static String publicDecrypt(PublicKey publicKey,String encrypted) throws Exception{ Cipher cipher 阅读全文
摘要:
这里记录一下 spdlog log 的 pattern 具体参数,官方链接见 https://github.com/gabime/spdlog/wiki/3.-Custom-formatting#pattern-flags 简单版见下表 flag meaning example %v The act 阅读全文
摘要:
首先是从 https://github.com/benhoyt/inih 取用的 ini 读取类头文件 //file ini.h /* inih -- simple .INI file parser SPDX-License-Identifier: BSD-3-Clause Copyright (C 阅读全文
摘要:
AOSP 使用 repo 来组织代码的,有时候我们只需要下载其中一部分代码。下面是具体的操作方式 <?xml version="1.0" encoding="UTF-8"?> <manifest> <remote name="aosp" fetch=".." review="https://andr 阅读全文
摘要:
编码过程中我们有时候需要将数据的十六进制值打出来看看,这里做一下记录 #include <ctype.h> #include <unistd.h> #include <sstream> #include <string> #include <iomanip> std::string pretty_s 阅读全文
摘要:
跟着官网的Demo试验了一下,发现跑起来就Abort了,下面是具体的报错 terminate called after throwing an instance of 'std::system_error' what(): Unknown error -1 Aborted (core dumped) 阅读全文
摘要:
某日上班,登服务器后编译Android ROM,增量编译时间比平时长了 3~4 倍,htop 看一下 ![](https://img2023.cnblogs.com/blog/818645/202307/818645-20230730134154777-1721635038.png) 好奇怪,怎么前 阅读全文
摘要:
perfetto 是从安卓9.0开始可用的安卓系统性能监测相关的一个工具,可以参考官网: [perfetto](https://developer.android.google.cn/studio/command-line/perfetto?hl=zh_cn) 通常我们使用 ui.perfetto. 阅读全文