如何在android模拟器上移植我自己的设备驱动程序
谁能告诉我如何在 Android 模拟器上安装或移植我自己的驱动程序(例如:显示驱动程序)以及如何测试它......
谢谢,Manju
Can anyone tell me how can i install or port my own driver(EX: Display driver) on android emulator and how to test it....
Thanks, Manju
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我猜您已经阅读了移植文档的 显示驱动程序 部分以及一些内容关于 Android 虚拟设备 (AVD) 模拟器配置。可以配置 AVD 设备来匹配您的显示器特性,但这不会实际测试您的显示器驱动程序。模拟器在这方面似乎不可扩展(无需修改 QEMU)。
所以..也许编写一个在模拟器上运行的应用程序级测试套件,然后在您的实际设备上尝试。
I'm guessing you have read the Display Drivers section of the porting documention as well as bits about the Android Virtual Device (AVD) emulator configuration already. An AVD device can be configured to match your characteristics of your display, but that won't actually test your display driver. It doesn't appear that the emulator is extensible in that regard (without modifying QEMU).
So .. perhaps write an application-level test suite that runs on the emulator, and then try it on your actual device.