安卓13 连接usb设备后不更新ui

在这里插入图片描述
总纲

android13 rom 开发总纲说明

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

猜你喜欢

转载自blog.csdn.net/zhutoubenben/article/details/143326709