I have been working on an Android app which uses try/catch frequently to prevent it from crashing even on places where there is no need. For example,
try/catch
A view
It's bad practice to use catch(Exception e){} because you're essentially ignoring the error. What you probably want to do is something more like:
catch(Exception e){}
try { //run code that could crash here } catch (Exception e) { System.out.println(e.getMessage()); }