[转] Linux下编写GT911触摸驱动

转自: http://bbs.100ask.net/article/35#:~:text=%E7%94%B1%E4%BA%8Elinux%E7%9A%84IIC%E5%9C%B0%E5%9D%80%E5%9C%A8%E4%BD%8E7%E4%BD%8D%EF%BC%8C%E5%9B%A0%E6...

qcom android touch gt9xx 驱动移植

下载 gt9xx 官方提供的 v2.4 驱动

Could not GET 'https://dl.bintray.com/guardian/android/com/gu/android/toolargetool/0.2.1/toolargetool-0.2.1.pom'. Received status code 403 from server: Forbidden

原因是 jcenter 在 2021.05 停止服务了。 修改顶层的 build.gradle 在每个 jcenter() 上面增加一行 mavenCentral() 修改 app 目录下的 build.gradle 把 implementation 'com.gu.android:toola...

"No toolchains found in the NDK toolchains folder for ABI" "NDK does not contain any platforms”

这个一般是旧工程在新 android studio 中打开 "No toolchains found in the NDK toolchains folder for ABI" 需要安装ndk file -> settings -> android sdk -&...

error: expansion of date or time macro is not reproducible

在对应的 Makefile 中增加: EXTRA_CFLAGS +=-Wno-date-time EXTRA_CFLAGS +=-Wno-error=date-time 参考: https://blog.csdn.net/mike8825/article/details/52057637

qcom android kernel config 选择

android 生成的 kernel config 在 out/target/product/msm8937_32/obj/KERNEL_OBJ/.config 。要想找出到底哪个 config 决定了最后的 config,我们可以选择 CONFIG_TOUCHSCREEN_FT5X06=y ...

[转] MSM8909中LK阶段LCM屏适配与显示流程分析(一)

转自: https://www.cnblogs.com/Cqlismy/p/12019317.html

[转] Android 开发之 ---- bootloader (LK)

转自: https://blog.csdn.net/jmq_0000/article/details/7378348

android ui 记录

颜色代码 encycolorpedia https://encycolorpedia.cn RapidTables https://www.rapidtables.org/zh-CN/web/color/index.html 让 layout 靠底部 这个 layout 的上层需要是 ...

android 去除标题栏

去除标题栏有两种方法: 直接在 MainActivity 中的 onCreate 里面增加 ActionBar actionBar = getSupportActionBar(); if (actionBar != null) { actionBar.hide();...