-
Notifications
You must be signed in to change notification settings - Fork 2
Code Conventions
Jesse Goertzen edited this page Oct 19, 2023
·
1 revision
- Descriptive, PascalCase names that include the Android superclass name if appropriate
- Discriptive, camelCase names.
ListViewFragment listViewFragment = new ListViewFragment()
- Extract code into separate functions for each purpose. Avoid megalithic functions whenever possible
- Avoid deeply nested functions when possible
- todo
- todo