Multiple choice

Which of the following pieces of code sets the theme to all the activities in the application?

  1. <application android.theme=”@style/CustomTheme”><application android.theme="”@style/CustomTheme”"></application>

  2. <application android:theme=”@style/CustomTheme”><application android:theme="”@style/CustomTheme”"></application>

  3. <activity android.theme=”@style/CustomTheme”><activity android.theme="”@style/CustomTheme”"></activity>

  4. <activity android:theme=”@style/CustomTheme”>

  5. -

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

To set the theme to all the activities in an android application, <application> tag has to be used.