Proper Usage of Intents. Intent intent=new Intent(Intent.ACTION_SEND); Use Fragments when it requires. Fragments are not having UI and not requires any permission to access. It will give best UI development for phones and Tablets. Avoid ANR(Application Not Responding) calls ANR will come when long running process is running on Main thread. Run those in Background thread or any other. Use Proper libraries and when it needed, and build gradle file proper Not understanding Bitmaps/Avoiding the usage of Bitmaps Not Setting minSdkversion, compileSdkversion and targetSdkVersion in build.gradle file Not optimizing bandwidth usage/ poor Memory Management Not developing your apps with different sizes / Your apps is not compatible with all devices (screens) / UI (User Interface) is not compatible with all sizes of devices Not having an idea about the user interaction with app/ not thinking whether the app is user-friendly or not (Because everyone may not use your app the same way you would use it) When we are writing code for any app, it should be easy to understand and readable to any other developer because we have to work with a team. We should specify the code with comments explaining your coding lines. We should keep in mind some points as below: We should follow the naming conventions provided by Java coding standards because Java would be your basic language for Android apps development Use full English descriptors that accurately describe the variable, field, class or interface. Each and every function should be commented properly Each block of code must be surrounded by try-catch block so that the application does not crash There has to be separate packages for Activities, Constant Data and Class Data Objects for the application. Progress dialog should be used wherever there is some heavy processing or network operation running Use custom styles and themes to make the UI consistent throughout the application if the UI is customized as per the client requirements
Fix Play Store Rejection Due to SMS Permission - RRutors
How to copy database from assets folder in android using kotlin
What is "shared preferences" in Android ?
What is the difference between match_parent and fill_parent?
What is ANR in android?
How to check Android version?
Add Jar/Library Files as Dependency in Android Studio
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
How to avoid multiple button click at same time in android?
How do I generate random numbers in Dart?
How to get screen size (width,height) in Android?
Explain Fragment Life Cycle
Permission denied for window type 2010 in Marshmallow device
Fix Android Emulator Kill Error When Running Your App
Check List for Generate Signed APK Android
Symmetric vs Asymmetric Encryption in Android Server - RRutors
What are Android Versions available?
How do I check in SQLite whether a table exists?
Emulator: emulator: ERROR: Can't find 'Linux version ' string in kernel image file: Andr
Set Activity to Fullscreen Mode in Android - RRutors
Invoke-customs are only supported starting with android 0 --min-api 26
Extract Date and Time from Long Type Variable - RRutors
How to Use Deprecated Handler() in Android - RRutors Guide
How to Exit android app on back pressed?
How to install/ uninstall apk by command line ADB
How to Generate signed apk with android studio
How to stop EditText focus at Activity startup in Android?
How to reduce APK package size?
How to convert milli seconds to hours, minutes and seconds in Android?
How to get a contact image using a phone number in android?
FCM Not Receiving Notifications in Android - RRutors
How to convert DP to Pixel and Pixel to Dp?
What is ANR? How to avoid and resolve it?
Decompile APK Files: How to Get Source Code - RRutors Guide
What is Intent? What is the difference between an implicit intent and an explicit intent?
How to validate email address in Android with Kotlin?
INSTALL_FAILED_INVALID_APK: Split lib_slice_9_apk was defined multiple times. It is possible that th
How To Set Text Color Programmatically Android TextView?
How to Get bitmap from drawable: Android
Open PDF in Google Drive with Intent in Android - RRutors