Search code examples
androidviewscalefont-size

Is there any way to make padding scale to font size?


I'm used to web design, where I can ensure an element has padding (and other such values) that scales to its current font size, like:

button {
  padding: .5em 1em;
}

How can I accomplish this in Android?


Solution

  • You can use SP, but it works only for the user side re-size.