Skip to content

Tag: whitespace

How do I change the distance between words?

How can I change the distance between words in a string in Android Studio using the methods? I need the distance to be about half the size of the standard space. as I understand it, after BackgroundColorSpan(Color.BLACK), you can add a parameter to change the distance between words. Answer There are different…

Adding whitespace in Java

There is a class trim() to remove white spaces, how about adding/padding? Note: ” ” is not the solution. Answer I think you are talking about padding strings with spaces. One way to do this is with string format codes. For example, if you want to pad a string to a certain length with spaces, use s…