card.io-Android-source
card.io-Android-source copied to clipboard
Manual Entry Activity ignoring app theme's value for textColorHint
I am setting the Card.io Intent extra to use my App's theme, but my theme's value of
I'm looking through the source and I don't immediately see any problems.. each EditText is handled with something like:
if(! useApplicationTheme ) {
cvvEdit.setHintTextColor(Appearance.TEXT_COLOR_EDIT_TEXT_HINT);
}
Any ideas where this issue could be? I've checked and double checked that my Application has a theme, and that I'm setting intent.putExtra(CardIOActivity.EXTRA_KEEP_APPLICATION_THEME, true);
Could this be related to https://github.com/card-io/card.io-Android-SDK/issues/99? I don't recall the results of my testing during the original development, but I do remember the hint color being difficult to change.