Every Android application runs in its own process...
Answer & Explanation
Correct Answer: with its own instance of the Dalvik Virtual Machine.
Note: This Question is unanswered, help us to find answer for this one
What is an Intent ?
Answer & Explanation
Correct Answer: a message
Note: This Question is unanswered, help us to find answer for this one
Your Android application components are defined in the...
Answer & Explanation
Correct Answer: AndroidManifest.xml file.
Note: This Question is unanswered, help us to find answer for this one
What kernel is Android based on?
Answer & Explanation
Correct Answer: Linux Kernel
Note: This Question is unanswered, help us to find answer for this one
Which of the following are a function of the manifest file?
Answer & Explanation
Correct Answer: all of these
Note: This Question is unanswered, help us to find answer for this one
Is it possible to update this textView as follows ? new Thread(new Runnable() { @Override public void run() { textView.setText("Hello World"); } }).start();
Answer & Explanation
Correct Answer: No, because system throws a Fatal Exception: "Only the original thread that created a view hierarchy can touch its views"
Note: This Question is unanswered, help us to find answer for this one
When an asynchronous task is executed, the task goes through several steps. Which option is not a step of an asynchronous task?
Answer & Explanation
Correct Answer: onBackground()
Note: This Question is unanswered, help us to find answer for this one
In order to specify layouts so that they adapt to any screen size, specify dimensions in:
Answer & Explanation
Correct Answer: Density-independent pixels
Note: This Question is unanswered, help us to find answer for this one
What is the main hardware platform of Android?
Answer & Explanation
Correct Answer: ARM architecture
Note: This Question is unanswered, help us to find answer for this one
Which of the following is NOT a subclass of TextView?
Answer & Explanation
Correct Answer: Image Button
Note: This Question is unanswered, help us to find answer for this one