This document provides descriptions of common user interface components in Android, including:
- TextView - Displays text that can optionally be edited. Configured to not allow editing by default.
- EditText - A thin wrapper around TextView that configures itself to be editable for user input.
- Button - Represents a push button widget that can be pressed to perform an action.
- CheckBox - A two-state button that can be checked or unchecked to select options. Radio buttons are similar but can only have one option selected at a time within a RadioGroup.
Related topics: