0% found this document useful (0 votes)
10 views

Disprofess Filbert Abnormality

The questions ask about XML layouts, the Android framework, permissions, emulators, activity creators, activities vs services, containers, and visible activities. XML layouts standardize GUI format. The Android framework contains classes and methods for app development. Permissions protect data and code. Emulators safely test code. Activity creators generate project structure. Activities can close while services run independently. Containers hold objects and widgets. A visible activity sits behind a foreground dialog and is visible but not in the foreground.

Uploaded by

colokcolokdong
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

Disprofess Filbert Abnormality

The questions ask about XML layouts, the Android framework, permissions, emulators, activity creators, activities vs services, containers, and visible activities. XML layouts standardize GUI format. The Android framework contains classes and methods for app development. Permissions protect data and code. Emulators safely test code. Activity creators generate project structure. Activities can close while services run independently. Containers hold objects and widgets. A visible activity sits behind a foreground dialog and is visible but not in the foreground.

Uploaded by

colokcolokdong
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Question: What is the importance of XML-based layouts?

Answer: The use of XML-based layouts provides a consistent and somewhat standard
means of setting GUI definition format. In common practice, layout details are placed in XML
files while other items are placed in source files.

Question: Describe the Android Framework.

Answer: The Android Framework is an important aspect of the Android Architecture. Here
you can find all the classes and methods that developers would need in order to write
applications on the Android environment.

Question: What is the importance of settings permissions in app development?

Answer: Permissions allow certain restrictions to be imposed primarily to protect data and
code. Without these, codes could be compromised, resulting to defects in functionality.

Question: What is the importance of having an emulator within the Android environment?

Answer: The emulator lets developers “play” around an interface that acts as if it were an
actual mobile device. They can write and test codes, and even debug. Emulators are a safe
place for testing codes especially if it is in the early design phase.

Question: What is the use of an activityCreator?

Answer: An activityCreator is the first step towards the creation of a new Android project. It
is made up of a shell script that will be used to create new file system structure necessary
for writing codes within the Android IDE.

Question: Differentiate Activities from Services.

Answer: Activities can be closed, or terminated anytime the user wishes. On the other hand,
services are designed to run behind the scenes, and can act independently. Most services
run continuously, regardless of whether there are certain or no activities being executed.
Question: What are containers?

Answer: Containers, as the name itself implies, holds objects and widgets together,
depending on which specific items are needed and in what particular arrangement that is
wanted. Containers may hold labels, fields, buttons, or even child containers, as examples.

Question: What is a visible activity?

Answer: A visible activity is one that sits behind a foreground dialog. It is actually visible to
the user, but not necessarily being in the foreground itself.

You might also like