Is there any way to increase the font size in toast without customizing?
I don\'t want to create a layout for increasing the text size.
Is there any way?
Here is how to do that with spans:
SpannableStringBuilder biggerText = new SpannableStringBuilder(text); biggerText.setSpan(new RelativeSizeSpan(1.35f), 0, text.length(), 0); Toast.makeText(context, biggerText, Toast.LENGTH_LONG).show();