I want to be able to store a font size (18sp) in a resource so that a lot of my layouts will use so that I can easily change the size in the future if I need to. I\'ve a st
Create a dimens.xml file in your res directory with contents similar to this:
18dp
Then instead of referencing it like @string/blah, use @dimen/blah.