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?
Toast toast = Toast.makeText(MyApplication.getContext(), "here", Toast.LENGTH_LONG); ViewGroup group = (ViewGroup) toast.getView(); TextView messageTextView = (TextView) group.getChildAt(0); messageTextView.setTextSize(30); toast.show();