-
Notifications
You must be signed in to change notification settings - Fork 420
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
how to change text color and text font in android #60
Comments
Yo lo conseguí de esta forma. ArrayList elements = new ArrayList<>(); PaperOnboardingFragment onBoardingFragment = PaperOnboardingFragment.newInstance(elements); Despues haces esto: // Listener para detectar cambios de página que eso lo que hará es cambiar el texto cada vez que cambies de página, pero la primera no se cambiará el color por lo que tienes que hacer lo siguiente, pones lo que sigue que te indica la libreria: y seguido haces esto:
y te creas el siguiente método: private void changeTextColor(View view, int color) {
en mi caso tengo esta condición !(view instanceof Button) para que no se aplique a un botón que he agregado. Espero que os sirva de ayuda!! |
how to change text color and text font in android??
The text was updated successfully, but these errors were encountered: