因为公司买了两块开发板,但是发现一块开机时间是30都不到,而全志这志开发板却开个机花费了1分多钟的时间,所以得找一下原因
用 adb shell logcat -v time > time.txt 查看开机的日志,发现有一个可疑的地方
01-01 08:09:06.110 I/InputDispatcher( 1489): Dropped event because input dispatch is disabled.
01-01 08:09:06.130 I/InputDispatcher( 1489): Dropped event because input dispatch is disabled.
01-01 08:09:06.230 I/SurfaceFlinger( 1170): Boot is finished (41682 ms)
百度一下“Dropped event because input dispatch is disabled” 找到下面一个网址
http://stackoverflow.com/questions/31618101/android-custom-launcher-doesnt-stop-the-bootanimation
原来是一个叫 WallpaperService 的服务影响了
按网上说的方法修改
androidframeworksbasecoreresresvaluesconfig.xml 第634行:
true 改为
false
编译,运行,问题解决
因为公司买了两块开发板,但是发现一块开机时间是30都不到,而全志这志开发板却开个机花费了1分多钟的时间,所以得找一下原因
用 adb shell logcat -v time > time.txt 查看开机的日志,发现有一个可疑的地方
01-01 08:09:06.110 I/InputDispatcher( 1489): Dropped event because input dispatch is disabled.
01-01 08:09:06.130 I/InputDispatcher( 1489): Dropped event because input dispatch is disabled.
01-01 08:09:06.230 I/SurfaceFlinger( 1170): Boot is finished (41682 ms)
百度一下“Dropped event because input dispatch is disabled” 找到下面一个网址
http://stackoverflow.com/questions/31618101/android-custom-launcher-doesnt-stop-the-bootanimation
原来是一个叫 WallpaperService 的服务影响了
按网上说的方法修改
androidframeworksbasecoreresresvaluesconfig.xml 第634行:
true 改为
false
编译,运行,问题解决
举报