Google Associate Android Developer Practice Test - Questions Answers, Page 12

List of questions
Question 111

Content labels. What attribute to use to indicate that a View should act as a content label for another View?
Question 112

In application theme style, flag windowActionBar (<item name="windowActionBar">) indicates:
Question 113

In application theme style, flag windowNoTitle (<item name="windowNoTitle">) indicates:
Question 114

In application theme style, flag windowDrawsSystemBarBackgrounds (<item name="android:windowDrawsSystemBarBackgrounds">) indicates:
Question 115

In application theme style, value statusBarColor (<item name="android:statusBarColor">) means:
Question 116

An overridden method onCreateOptionsMenu in an Activity returns boolean value. What does this value mean?
Question 117

For example, suppose that in a XML file (res/menu/menu_main.xml as an example), where menu items are described, we have such item:
Question 118

To handle an options menu item click in an activity, we usually should override method named:
Question 119

Working with Custom View. To define custom attributes, we can add <declare-styleable> resources to our project. It is customary to put these resources into a file:
Question 120

Working with Custom View. Once you define the custom attributes, you can use them in layout XML files just like built-in attributes. The only difference is that your custom attributes belong to a different namespace. Instead of belonging to the http://schemas.android.com/apk/res/android namespace, they belong to:
Question