摘要: 一.android:theme1.在定义Theme的时候@符号和?符号有何区别?@符号 表明 我们引用的资源是前边定义过的(或者在前一个项目中或者在Android 框架中)。问号?表明 我们引用的资源的值在 当前的 主题当中定义过2.常见的主题风格 android:theme="@android:s 阅读全文
posted @ 2020-08-05 16:19 CrushGirl 阅读(606) 评论(0) 推荐(0)
摘要: 夏洛克的喵 https://www.jianshu.com/p/8e8a04979532 yayun0516 https://blog.csdn.net/yayun0516/article/details/52108210 excludeFromRecents控制在不在recent列表中显示true 阅读全文
posted @ 2020-08-05 09:55 CrushGirl 阅读(4245) 评论(0) 推荐(0)
摘要: Platform: RK3288OS: Android 7.1Kernel: 4.4.143 Android7.0 DirectBoot阻塞开机分析 宇落无痕 https://blog.csdn.net/fu_kevin0606/article/details/65437594 一.需求: 仿And 阅读全文
posted @ 2020-08-04 22:32 CrushGirl 阅读(866) 评论(0) 推荐(0)
摘要: 7月过得好快,这个月需求少 大部分时间还是自己安排,写了一点东西总结一下,不然都不知道自己干嘛 20200717 RK3288 Android7.1 GPIO驱动控制LED灯亮灭 一.xh_key.c的学习 主要是中断注册函数了解 二.操作普通GPIO说明2.2.1.在dts添加gpio的引用描述: 阅读全文
posted @ 2020-08-01 14:07 CrushGirl 阅读(193) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/mythou/p/3425570.html https://blog.csdn.net/myfriend0/article/details/59107989 Platform: RK3288OS: Android 5.1Kernel: 3.10.0 一 阅读全文
posted @ 2020-07-31 10:23 CrushGirl 阅读(1469) 评论(0) 推荐(0)
摘要: 一.查看是否存在camera外设,设备节点 ls /dev/video* 二.adb 查看camera 详细信息 2.1.adb shell dumpsys media.camera 2.2.adb 查看camera 过滤信息 查看某一项参数,使用过滤命令grep(linux), windows下可 阅读全文
posted @ 2020-07-30 14:58 CrushGirl 阅读(7585) 评论(0) 推荐(0)
摘要: 如果一个应用程序想要使用系统的方法,那么就需要给这个应用程序签名,相当于授权。 一.用于设置不同的签名方式build/target/product/security目录中有四组默认签名供Android.mk在编译APK使用:1.testkey:普通APK,默认情况下使用。2.platform:该AP 阅读全文
posted @ 2020-07-29 19:33 CrushGirl 阅读(741) 评论(0) 推荐(0)
摘要: 一.system权限 1.在AndroidManifest.xml中,在manifest加入android:sharedUserId="android.uid.system"2.在Android.mk中,將LOCAL_CERTIFICATE := XXX修改成LOCAL_CERTIFICATE := 阅读全文
posted @ 2020-07-28 17:46 CrushGirl 阅读(1180) 评论(0) 推荐(0)
摘要: 一、隐藏上方TitleBar在AndroidManifest.xml的配置文件里面的<activity>标签添加属性: android:theme="@android:style/Theme.NoTitleBar.Fullscreen" 示例: <application android:allowB 阅读全文
posted @ 2020-07-22 10:52 CrushGirl 阅读(1362) 评论(0) 推荐(0)
摘要: http://iissnan.com/progit/ gitPro Lrarn Git Branching 一.Git Workspace:工作区 Index / Stage:暂存区 Repository:仓库区(或本地仓库) Remote:远程仓库 工作区:就是你在电脑里能看到的目录。 暂存区:英 阅读全文
posted @ 2020-07-21 16:38 CrushGirl 阅读(360) 评论(0) 推荐(0)