Chapter 4. Android Development Style and Standards in the Industry
There is no written rule or direction to write code in Android, other than the syntactical grammar. However, most developers across the globe follow a few fundamental styles and standards for writing Android code. Android is based on Java, so most of the stylization follows Java standards.
When it comes to Android game development, there are a few design styles that should be followed. They do not cover game design, rather more technical design. These kinds of styles and standards indicate a proper project structure, class structure, and folder/file management.
Typical game design also involves following some rules while working on the Android platform. A few styles are being followed in the industry in terms of game design.
In this chapter, we will have a look at these styles and standards through the following topics:
- The Android programming structure
- Game programming specifications
- Technical design standards
- Game design...