Valid AND-401 Dumps shared by ExamDiscuss.com for Helping Passing AND-401 Exam! ExamDiscuss.com now offer the newest AND-401 exam dumps, the ExamDiscuss.com AND-401 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com AND-401 dumps with Test Engine here:
Suppose that the <application> tag in the AndroidManifest.XML file of your application has attribute android.theme="@style/AppTheme". Which of the following contents of file /res/value/style.xml correctly applies to the Light Material Theme to your application?
Correct Answer: B
Explanation/Reference: The material theme is defined as: @android:style/Theme.Material (dark version) @android:style/Theme.Material.Light (light version) @android:style/Theme.Material.Light.DarkActionBar Example: Add a resources node to styles.xml and define a style node with the name of your custom theme. For example, here is a styles.xml file that defines MyCustomTheme (derived from the built-in Theme.Material.Light theme style): <?xml version="1.0" encoding="UTF-8" ?> <resources> <!-- Inherit from the light Material Theme --> <style name="MyCustomTheme" parent="android:Theme.Material.Light"> <!-- Customizations go here --> </style> </resources> References: https://developer.xamarin.com/guides/android/user_interface/material_theme/