Google Associate Android Developer Practice Test - Questions Answers, Page 11
List of questions
Related questions
Question 101
Custom views and directional controller clicks. In general, you should send an AccessibilityEvent whenever the content of your custom view changes. For example, if a text value was changed in your custom view, you should emit an event of this type:
Question 102
Select a correct statement about PagedList.
Question 103
If content in a PagedList updates, the PagedListAdapter object receives:
Question 104
Relative positioning is one of the basic building blocks of creating layouts in ConstraintLayout. Constraints allow you to position a given widget relative to another one. What constraints do not exist?
Question 105
Which statement is most true about layout_constraintLeft_toRightOf and layout_constraintStart_toEndOf constraints ?
Question 106
In application theme style, flag windowNoTitle (<item name="windowNoTitle">) indicates:
Question 107
"Set the activity content to an explicit view. This view is placed directly into the activity's view hierarchy. It can itself be a complex view hierarchy." This can be done by calling method:
Question 108
A content label sometimes depends on information only available at runtime, or the meaning of a View might change over time. For example, a Play button might change to a Pause button during music playback. In these cases, to update the content label at the appropriate time, we can use:
Question 109
When using an ImageView, ImageButton, CheckBox, or other View that conveys information graphically. What attribute to use to provide a content label for that
View?
Question 110
When using an EditTexts or editable TextViews, or other editable View. What attribute to use to provide a content label for that View?
Question