摘要: 1、定义、初始化 数组的地址等于其首个元素的地址 [存储类型] 数据类型 标识符 [行下标] [列下标] 2、元素引用 数组名称【行下标】【列下标】 3、存储形式 顺序存储,按行存储 4、深入理解二维数组 #include <stdio.h> #include <stdlib.h> #define 阅读全文
posted @ 2023-02-23 20:39 迷~途 阅读(113) 评论(0) 推荐(0) 编辑
摘要: JDK华为镜像地址https://mirrors.huaweicloud.com/java/jdk/ 阅读全文
posted @ 2022-11-21 14:54 迷~途 阅读(104) 评论(0) 推荐(0) 编辑
摘要: 默认值设置路径 : /frameworks/base/packages/SettingsProvider/res/values/defaults.xml <integer name="def_screen_brightness">255</integer> 屏幕亮度 <bool name="def_ 阅读全文
posted @ 2022-10-29 17:49 迷~途 阅读(1702) 评论(0) 推荐(0) 编辑
摘要: 第一步:在依赖中 引入framework.jar dependencies { //引用framework_android11.jar,compileOnly仅参与编译 compileOnly files('libs/framework_android11.jar') } 第二步:在build.gr 阅读全文
posted @ 2022-10-20 15:17 迷~途 阅读(221) 评论(0) 推荐(0) 编辑
摘要: ndk { abiFilters "armeabi", "armeabi-v7a", "arm64-v8a" // 指定要ndk需要兼容的架构(这样其他依赖包里mips之类的so会被过滤掉) } 排除指定架构的so文件 android { defaultConfig { ndk { abiFilte 阅读全文
posted @ 2022-10-10 09:35 迷~途 阅读(1610) 评论(0) 推荐(0) 编辑
摘要: 需求:应用锁, //自定义dialog的显示view View view = getLayoutInflater().inflate(R.layout.passwd_dialog_view, null); final EditText editText = (EditText) view.findV 阅读全文
posted @ 2022-10-09 15:36 迷~途 阅读(38) 评论(0) 推荐(0) 编辑
摘要: 1、在PE模式下 用分区工具将硬盘转化为GUID格式,然后再重新装系统 阅读全文
posted @ 2021-09-23 10:52 迷~途 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 右键打开module Setting 然后点击添加spring的支持,点击应用之后就恢复提示功能了 阅读全文
posted @ 2021-09-18 09:44 迷~途 阅读(1957) 评论(0) 推荐(0) 编辑
摘要: 文件不全,未编译uboot跟kernel以及system Add file: /home/aosp/rk/x3288_nougat/out/release/package-file Add file: /home/aosp/rk/x3288_nougat/out/release/MiniLoader 阅读全文
posted @ 2021-08-02 10:29 迷~途 阅读(1040) 评论(0) 推荐(0) 编辑
摘要: 源码管理 找到原有的.git 删除后 添加自己的git find ./ -name '.git' | xargs rm -rf 常用命令 gettop 函数 获取当前编译环境的work_directory目录 如下所示,适用于在深层目录中 跳转其他目录 (aosppy2) aosp@ubuntu:~ 阅读全文
posted @ 2021-07-23 10:12 迷~途 阅读(944) 评论(0) 推荐(0) 编辑