How can we increase the font size in toast?

前端 未结 7 586
谎友^
谎友^ 2021-01-31 15:15

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?

7条回答
  •  生来不讨喜
    2021-01-31 16:15

    I believe it is achieveable by this:

        ViewGroup group = (ViewGroup) toast.getView();
        TextView messageTextView = (TextView) group.getChildAt(0);
        messageTextView.setTextSize(25);
    

提交回复
热议问题