UI Components and Event Listeners

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/17

flashcard set

Earn XP

Description and Tags

These flashcards cover key concepts and terminology related to UI Components and Event Listeners in Android development.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

18 Terms

1
New cards

Activity Lifecycle

The sequence of states an activity goes through from creation to destruction, including onCreate(), onStart(), onResume(), onPause(), onStop(), and onDestroy.

2
New cards
3
New cards

String Resources

Strings used in an application that can be defined in XML format for easy management and localization.

4
New cards

Bitmap Files

Image files in .png, .jpg, or .gif format used as drawable resources in Android applications.

5
New cards

Event Handling

The process of responding to user actions, such as clicks on buttons or interactions with UI components.

6
New cards

Fragments

Modular sections of an activity that allow for a more flexible UI design and can have their own lifecycle.

7
New cards

Content Providers

Components that manage shared data between applications, allowing them to store and retrieve data in a structured way.

8
New cards

Services

Background components that perform long-running operations without a user interface, such as playing music or downloading files.

9
New cards

Broadcast Receivers

Components that listen for system-wide broadcast announcements and respond to them, even if the app is not active.

10
New cards

Action Bar

A UI element in Android that displays the title of the activity and provides navigation and action buttons.

11
New cards

Material Design

A design language developed by Google that combines classic principles of good design with innovation in technology.

12
New cards

View Identifiers

Unique identifiers assigned to UI components in XML, enabling access to these components in the activity code.

13
New cards

Common UI Attributes

Attributes shared among UI components that define properties such as layoutwidth, layoutheight, textColor, and onClick methods.

14
New cards

LinearLayout

A layout that arranges its child views in a single column or row, either vertically or horizontally.

15
New cards

EditText

A UI element that allows users to enter and modify text input.

16
New cards

CheckBox

A two-state button that can be either checked or unchecked, used for user selections.

17
New cards

ListView

A view that displays a scrollable list of items, commonly used for dynamic data presentation in Android apps.

18
New cards

App Components

The essential building blocks of an Android app, including Activities, Services, Broadcast Receivers, and Content Providers.