Created
June 23, 2016 13:01
-
-
Save rinav/2bb2812e25cea10d12b9c18d1ed5a23c to your computer and use it in GitHub Desktop.
Android Toolbar text and popup color tests
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Toolbar text and popup color tests | |
| 1) | |
| Input: | |
| app:theme="@style/ThemeOverlay.AppCompat.Light" | |
| app:popupTheme="@style/ThemeOverlay.AppCompat.Light" | |
| Output: | |
| Toolbar: black text, primaryColor background | |
| Popup: black text, white background | |
| 2) | |
| Input: | |
| app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | |
| app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" | |
| Output: | |
| Toolbar: white text, primaryColor background | |
| Popup: white text, black background | |
| 3) | |
| Input: | |
| app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" | |
| app:popupTheme="@style/ThemeOverlay.AppCompat.Light" | |
| Output: | |
| Toolbar: white text, primaryColor background | |
| Popup: black text, white background | |
| 4) | |
| Input: | |
| app:theme="@style/ThemeOverlay.AppCompat.Light" | |
| app:popupTheme="@style/ThemeOverlay.AppCompat.Dark" | |
| Output: | |
| Toolbar: black text, primaryColor background | |
| Popup: white text, black background |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment