StrictMode is a developer tool which can be used to detects errors that are very hard to identify. Generally it detects things you might be doing by accident. StrictMode is a handy way to catch accidental disk or network access on the application’s main thread. You can make much smoother/responsive UI, prevent ANR dialogs from […]
Hi there! Here is a list of some useful keyboard shortcuts of Android Studio which will save your time while coding- Name Shortcuts Find Class CTRL+N Find File CTRL+SHFT+N Delete Line Ctrl+Y Reformat Code Ctrl+ALT+L Project Quick Fix (Constructors, Getter, Setter, equals, hashCode, toString etc) ALT+INS Jump to Line Number Ctrl+G Rename and Refactor Shift+F6 […]
Hi there, are you facing any trouble while debugging your app in Android Studio? For example, each time you debug an application it drops you in the source code of API. But in most of the cases you do not want to debug library’s API! You may achieve this by doing the following steps- Go […]