How do I test my Dock Application

烈酒焚心 提交于 2019-12-04 08:11:20

问题


I don't have a Dock, but I'm writing an Dock replacement app. Can I simulate the Clock Dock somehow? I know I can for the Car Dock, but that's not the dock I'm replacing.

Can I flip my device to Desk Mode through ADB somehow? Maybe with something like? ADB shell sendevent XXX

Thanks


回答1:


The adb command above is almost correct. you need to use --ei and not -ei. the full command I use to simulate docked to car is:

am broadcast -a android.intent.action.DOCK_EVENT --ei android.intent.extra.DOCK_STATE 2

execute this command from the adb console and that should do it (no permission issues since adb runs in root context)

Only thing missing it that this is supposed to be a sticky broadcast and I don't think there is any way setting it as sticky using adb.




回答2:


It works by magnet so if you have place a strong enough magnet near the back of the device it will think its on a dock. I don't think that will hurt anything in the device either.



来源:https://stackoverflow.com/questions/5109407/how-do-i-test-my-dock-application

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!