总纲
android13 rom 开发总纲说明
文章目录
- 1.前言
- 2.问题分析
- 3.代码更改
- 4.彩蛋
1.前言
有些界面在链接usb设备后,ui会被刷新,导致闪烁问题。
2.问题分析
像这种问题一般是usb事件,导致的ui事件更新了,处理方法是禁止该事件
3.代码更改
这块我们就需要在输入事件管理里面,将事件的提醒去掉
参考代码如下:
diff --git a/frameworks/native/services/inputflinger/InputListener.cpp b/frameworks/native/services/inputflinger/InputListener.cpp
index dce327ed18..ce9b7f9e4c 100644
--- a/frameworks/native/services/inputflinger/InputListener.cpp
+++ b/frameworks/native