摘要: 一.手动编译后,./mkimage.sh会重新打包boot.img和system.img, 并将其它相关的映像文件拷贝到目录rockdev\Image-rk3288中。以下列出一般固件用到的映像文件: boot.img :Android 的初始文件映像,负责初始化并加载 system 分区 kern 阅读全文
posted @ 2020-07-08 10:32 CrushGirl 阅读(2047) 评论(0) 推荐(0) 编辑
摘要: 百分之50 SerialPortFinder 方法 有点意思 这个方法是不涉及底层的,没有native方法,也不需要c和h文件 就能识别串口 MainActivity.java package com.gatsby.serialport; import android.os.Bundle; impo 阅读全文
posted @ 2020-07-06 13:52 CrushGirl 阅读(1281) 评论(0) 推荐(0) 编辑
摘要: https://www.jianshu.com/p/94b8582d089a 一、ContentProviderContentProvider为不同的应用之间实现数据共享,提供统一的接口,也就是说ContentProvider可以实现进程间的数据共享,实现跨进程通信 二、ContentProvide 阅读全文
posted @ 2020-06-27 23:25 CrushGirl 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 一、SharedPreferences 1.1、SharedPreferences本身就是一个接口,不能直接创建实例,只能通过Context提供的getSharedPreferences(String name,int mode)方法获取SharedPreferences实例 Context.MOD 阅读全文
posted @ 2020-06-26 21:55 CrushGirl 阅读(285) 评论(0) 推荐(0) 编辑
摘要: https://blog.csdn.net/qq_38312843/article/details/104701361 https://blog.csdn.net/u014674293/article/details/93650709 一.分区 dmesg [ 1.389200] uboot: 0x 阅读全文
posted @ 2020-06-23 11:38 CrushGirl 阅读(3260) 评论(0) 推荐(0) 编辑
摘要: brave-sailor https://www.cnblogs.com/Free-Thinker/p/11937531.html _奇点 https://www.cnblogs.com/qi-dian/p/6132694.html 一、Android 应用常用存储路径 1.1、常用路径 /data 阅读全文
posted @ 2020-06-15 19:52 CrushGirl 阅读(4910) 评论(0) 推荐(0) 编辑
摘要: package com.gatsby.filepath; import android.os.Bundle; import android.os.Environment; import android.util.Log; import androidx.appcompat.app.AppCompat 阅读全文
posted @ 2020-06-15 16:59 CrushGirl 阅读(2379) 评论(0) 推荐(0) 编辑
摘要: 三、 四、 代码 4.1、activity_main.xml <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android 阅读全文
posted @ 2020-05-31 23:44 CrushGirl 阅读(1550) 评论(0) 推荐(0) 编辑
摘要: 安卓设备跟电脑需处于同一局域网内,可以使用有线网的方式,或是让电脑跟安卓设备连接在同一wifi路由下,亦可通过电脑创建wifi热点让安卓设备连接都可以 一.网络adb 1.1.device\rockchip\common\init.rk30board.rc # for Internet adb on 阅读全文
posted @ 2020-05-30 18:45 CrushGirl 阅读(512) 评论(0) 推荐(0) 编辑
摘要: 一、实现手机电话状态的监听,主要依靠两个类:TelephoneManger和PhoneStateListener 1.1、TelephonseManger提供了取得手机基本服务的信息的一种方式。因此应用程序可以使用TelephonyManager来探测手机基本服务的情况。应用程序可以注册listen 阅读全文
posted @ 2020-05-30 18:14 CrushGirl 阅读(1249) 评论(0) 推荐(0) 编辑