Skip to content
This repository was archived by the owner on Sep 17, 2022. It is now read-only.

Coding Patterns in Android

Samantha Fritsche edited this page Mar 7, 2019 · 1 revision

Many Android apps, including ours, follow a certain pattern for structuring our code and files. Most notably:

  • Each page in the app has a .xml "Layout" file.
  • Each page in the app has a .java "Activity" file.

In addition to these, we also have model classes, adapters, listeners, and so on. However, layout files and activity files form the backbone of the application.

Clone this wiki locally