Reik Nonpromiscuous Oiliness
Reik Nonpromiscuous Oiliness
Answer: Adb is short for Android Debug Bridge. It allows developers the power to execute
remote shell commands. Its basic function is to allow and control communication towards
and from the emulator port.
Answer: AAPT is short for Android Asset Packaging Tool. This tool provides developers with
the ability to deal with zip-compatible archives, which includes creating, extracting as well
as viewing its contents.
Question: What is the difference between a regular bitmap and a nine-patch image?
Answer: In general, a Nine-patch image allows resizing that can be used as background or
other image size requirements for the target device. The Nine-patch refers to the way you
can resize the image: 4 corners that are unscaled, 4 edges that are scaled in 1 axis, and the
middle one that can be scaled into both axes.
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 proper way of setting up an Android-powered device for app
development?
Answer: The following are steps to be followed prior to actual application development in
an Android-powered device: -Declare your application as “debuggable” in your Android
Manifest. -Turn on “USB Debugging” on your device. -Set up your system to detect your
device.
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.
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.