Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何隐藏显示应用程序已停止等的错误窗口?或者是否有任何 xposed 模块可以做到这一点?
我不建议任何人这样做,但您可以将所有代码放在 try 块中,并在发现错误时关闭应用程序。例如:
try { //all your code } catch(Exception ex) { finish(); }