• Shuffle
    Toggle On
    Toggle Off
  • Alphabetize
    Toggle On
    Toggle Off
  • Front First
    Toggle On
    Toggle Off
  • Both Sides
    Toggle On
    Toggle Off
  • Read
    Toggle On
    Toggle Off
Reading...
Front

Card Range To Study

through

image

Play button

image

Play button

image

Progress

1/24

Click to flip

Use LEFT and RIGHT arrow keys to navigate between flashcards;

Use UP and DOWN arrow keys to flip the card;

H to show hint;

A reads text to speech;

24 Cards in this Set

  • Front
  • Back

T/F: A button is a kind of view.

False

T/F: An Intent is a kind of Activity.

False

T/F: UI layout information is contained in the manifest file.

False

T/F: GPS device will report a location with an accuracy of 5 centimeters.

False

T/F: Paint contains a color.

True

T/F: The UI thread is the same as the main thread.

True

T/F: Mutex is short for mutual exclusion.

True

T/F: Cupcake is a java sdk version.

False

T/F: A check box is a widget.

True

T/F: Multi-touch screens can detect up to 25 simultaneous fingers.

False

OnTouchEvent() is called when a key is pressed.

True

Name the function that will draw a rectangle.

drawRect()

Name a way to make the application screen a solid color.

draw a rectangle across the entire screen and set the color

Name 2 events that would cause the onPause function to be called

Phone call


Back Button

Name 3 operating systems used on currently available mobile devices

Blackberry


iOS


Android

onPause is a member function of the _______ class.

Activity

What are 2 ways that UI layouts can be created in android?

The graphical editor in activity_main.html


The XML code

What is an android Activity?

an Android class with name given to part of an app; a single screen with user interface

Name 6 different input devices/sensors found on current phones/tablets.

1. microphone


2. multi-touch screen


3. gps


4. camera


5. accelerometer


6. gyroscope

Name one way that phone applications are structured differently than pc programs.

They need to plan to be killed at any time

What is a method of avoiding race conditions?

synchronization

Name one way to make your application crash.

turn off the phone/emulator

When using the accelerometer and compass to determine the orientation of a mobile device, name 2 scenarios that will cause unreliable results.

In a car


When free falling

What is the Intent's putExtra() function's intended purpose?

Trying to pass extra information in between classes