Skip to content

Instantly share code, notes, and snippets.

@rinav
Created June 23, 2016 13:01
Show Gist options
  • Select an option

  • Save rinav/2bb2812e25cea10d12b9c18d1ed5a23c to your computer and use it in GitHub Desktop.

Select an option

Save rinav/2bb2812e25cea10d12b9c18d1ed5a23c to your computer and use it in GitHub Desktop.
Android Toolbar text and popup color tests
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