我想创建一个没有任何UI的应用程序,仅在启动时发送一个KeyEvent,然后自行关闭。当我使用一项活动并完成
时,一切正常onCreate(){
//the Toast stuff
runtime.exec("input keyeven " + KEYCODE_VOLUME_DOWN) //with try catch error
//handling and printing the exception
finish();
}
,但是,如果我在清单中设置
android:theme="@android:style/Theme.NoDisplay"
运行时命令未执行。其他事情(如调用Toast消息)也有效,并且不会引发任何错误或异常。是否有解决此问题的解决方法或其他方法?
预期:单击Appicon,触发关键事件,执行其余代码 实际:单击Appicon,未触发任何键事件,其余代码执行