2015-08-18 69 views
1

有沒有辦法阻止android應用程序拋出的拋出異常消息(包括所有堆棧跟蹤和所有內容)?在Android上隱藏拋出的異常消息

編輯

嗯,我知道我可以使用try/catch塊做這不是我想要的。 有沒有像在mafinest文件中指定的方式,或者可能在項目settigs或smthng中?

+0

寫'嘗試{...}趕上(例外五){}' –

回答

2

您可以在try catch

try { 
    // code that might throw an exception 
} catch (Exception e) { 
    //don't print the exception 
} 
+0

感謝整個代碼,但是這不是我想要的包裝你的代碼。剛剛編輯我的帖子 – Moucheg