Underline text in a view

There’s no textStyle to add underline to a TextView or Button. Use the following to add it programmatically instead:

button.setPaintFlags(button.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);