MIDTERM Flashcards
What is Android’s kernel derived from?
Linux Kernel
What language are the native libraries written in?
C / C++
Which versions of Android use Android Runtime (ART)?
5.0 and up
What is the predecessor of Android Runtime?
Dalvik
What is .dex?
Bytecode used by ART and Dalvik
What is the “Mother” of all files in Android?
androidManifest.xml
What does Res mean?
Resources folder
What is the Logcat window?
Displays messages in real time as you run your app
What kind of message is Log.e?
Error
What kind of message is Log.w?
Warning
What kind of message is Log.i?
Information
What kind of message is Log.d?
Debug
What kind of message is Log.v?
Verbose
What does Android Profiler do?
Shows the status of the device. ex: Network, Memory, CPU
What is the Android Debug Bridge?
A command-line tool to communicate with device
What is an Activity?
A window that contains the UI of your app
How many activities can an app have?
0+
What is a fragment?
Miniature activities that can be grouped to make one activity
What is an Intent?
The “glue” that enables different activities from different applications to work together