مواضيع ٢

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/42

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

43 Terms

1
New cards

LinearLayout

A view group that aligns all children in a single direction, either vertically or horizontally.

2
New cards

RelativeLayout

A view group that displays child views in relative positions.

3
New cards

TableLayout

A view that groups views into rows and columns.

4
New cards

FrameLayout

A placeholder on screen that you can use to display a single view.

5
New cards

ListView

A view group that displays a list of scrollable items.

6
New cards

GridView

A ViewGroup that displays items in a two-dimensional, scrollable grid.

7
New cards

ConstraintLayout

A ViewGroup which allows you to position and size widgets in a flexible way.

8
New cards

TextView

A control used to display text to the user.

9
New cards

EditText

A predefined subclass of TextView that includes rich editing capabilities.

10
New cards

AutoCompleteTextView

A view similar to EditText, showing a list of completion suggestions automatically while typing.

11
New cards

Button

A push-button that can be pressed or clicked by the user to perform an action.

12
New cards

CheckBox

An on/off switch that can be toggled by the user, useful for presenting a group of selectable options that are not mutually exclusive.

13
New cards

ToggleButton

An on/off button with a light indicator.

14
New cards

RadioButton

A control that has two states: either checked or unchecked.

15
New cards

RadioGroup

Used to group one or more RadioButtons together.

16
New cards

ProgressBar

A view that provides visual feedback about ongoing tasks.

17
New cards

Spinner

A drop-down list that allows users to select one value from a set.

18
New cards

TimePicker

Enables users to select a time of day in either 24-hour or AM/PM mode.

19
New cards

DatePicker

Enables users to select a date.

20
New cards

onDown()

Notifies when a tap down event occurs.

21
New cards

onFling()

Notifies when a tap down, movement, and matching up event occurs.

22
New cards

onLongPress()

Notifies when a long press occurs.

23
New cards

onScroll()

Notifies when a scroll occurs.

24
New cards

onShowPress()

Notifies when a tap down occurs before any movement or release.

25
New cards

onSingleTapUp()

Notifies when a tap up event occurs.

26
New cards

int getAction()

Inspects the action value of a touch event.

27
New cards

ClipData getClipData()

Returns the ClipData object sent to the system as part of the call to startDrag().

28
New cards

boolean getResult()

Returns an indication of the result of the drag and drop operation.

29
New cards

String toString()

Returns a string representation of a DragEvent object.

30
New cards

float distanceTo(Location dest)

Returns the approximate distance in meters between this location and a given location.

31
New cards

float getAccuracy()

Gets the estimated accuracy of a location, in meters.

32
New cards

double getAltitude()

Gets the altitude if available, in meters above sea level.

33
New cards

float getBearing()

Gets the bearing, in degrees.

34
New cards

double getLatitude()

Gets the latitude, in degrees.

35
New cards

double getLongitude()

Gets the longitude, in degrees.

36
New cards

boolean hasBearing()

True if a location has a bearing.

37
New cards

boolean hasSpeed()

True if a location has a speed.

38
New cards

void reset()

Clears the contents of the location.

39
New cards

void setAccuracy(float accuracy)

Sets the estimated accuracy of a location, in meters.

40
New cards

void setAltitude(double altitude)

Sets the altitude, in meters above sea level.

41
New cards

void setBearing(float bearing)

Sets the bearing, in degrees.

42
New cards

void setLatitude(double latitude)

Sets the latitude, in degrees.

43
New cards

Prepare for debugging

Install LLDB, enable debugging on your device, and run a debuggable build variant.