Topic 2
In application theme style, flag windowNoTitle () indicates:
B
Explanation:
Reference:
https://developer.android.com/guide/topics/ui/look-and-feel/themes
https://developer.android.com/reference/android/R.styleable.html
Topic 2
In application theme style, flag windowActionBar () indicates:
D
Explanation:
Reference:
https://developer.android.com/guide/topics/ui/look-and-feel/themes
https://developer.android.com/reference/android/R.styleable.html
Topic 2
Content labels. What attribute to use to indicate that a View should act as a content label for another View?
C
Explanation:
Reference:
https://support.google.com/accessibility/android/answer/7158690?hl=en
Topic 2
When using an EditTexts or editable TextViews, or other editable View. What attribute to use to provide a content label for
that View?
B
Explanation:
Reference:
https://support.google.com/accessibility/android/answer/7158690?hl=en
Topic 2
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?
A
Explanation:
Reference:
https://support.google.com/accessibility/android/answer/7158690?hl=en
Topic 2
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:
C
Explanation:
Reference:
https://support.google.com/accessibility/android/answer/7158690?hl=en
Topic 2
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:
B
Explanation:
Reference:
https://developer.android.com/training/basics/firstapp/building-ui https://developer.android.com/reference/android/app/Activity
Topic 2
In application theme style, flag windowNoTitle () indicates:
B
Explanation:
Reference:
https://developer.android.com/guide/topics/ui/look-and-feel/themes
https://developer.android.com/reference/android/R.styleable.html
Topic 2
Which statement is most true about layout_constraintLeft_toRightOf and layout_constraintStart_toEndOf constraints ?
C
Explanation:
Reference:
https://developer.android.com/training/basics/supporting-devices/languages
Topic 2
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?
C
Explanation:
Reference:
https://developer.android.com/reference/androidx/constraintlayout/widget/ConstraintLayout
Topic 2
If content in a PagedList updates, the PagedListAdapter object receives:
C
Explanation:
Reference:
https://developer.android.com/topic/libraries/architecture/paging/ui
Topic 2
Select a correct statement about PagedList.
B
Explanation:
Reference:
https://developer.android.com/topic/libraries/architecture/paging/ui
Topic 2
DRAG DROP
In a common Paging Library architecture scheme, move instances to the correct positions.
Select and Place:
Explanation:
Reference:
https://developer.android.com/topic/libraries/architecture/paging/ui
Topic 2
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:
D
Explanation:
Reference:
https://developer.android.com/guide/topics/ui/accessibility/custom-views
Topic 2
Custom views and directional controller clicks. On most devices, clicking a view using a directional controller sends (to the
view currently in focus) a KeyEvent with:
A
Explanation:
Reference:
https://developer.android.com/guide/topics/ui/accessibility/custom-views