Fixed kabouzeid/phonograph-issue-tracker#29, toolbar text is white in about section while using light themes.

This commit is contained in:
Karim Abou Zeid 2015-09-22 13:46:32 +02:00
commit 55f8800f89
2 changed files with 11 additions and 0 deletions

View file

@ -146,6 +146,9 @@ public class ViewUtil {
});
}
/**
* Call this in {@link android.app.Activity#onCreateOptionsMenu(Menu)} and everywhere where the toolbar color is changed.
*/
public static void setToolbarContentColorForBackground(@NonNull Context context, @Nullable Toolbar toolbar, @ColorInt final int backgroundColor) {
ViewUtil.setToolbarContentDark(context, toolbar, ColorUtil.useDarkTextColorOnBackground(backgroundColor));
}