朋友们,我正在尝试在我的应用程序中设置可变大小的文本,但我没有得到想要的结果。
msgInside=(TextView)findViewById(R.id.textView2);
msgInside.setTextSize(30);
msgInside.setText("BIG MESSAGE");
msgInside.setTextSize(20);
msgInside.setText("SMALL MESSAGE");
我只能看到SMALL MESSAGE
,我需要看到这两个消息