I want to scale my textview
font size, however, I could not understand its behavior from very simple code so I cannot control the font size.
TextView textView = (TextView)findViewById(R.id.textview2);
textView.setTextSize(textView.getTextSize());
The font size was supposed not to change, but the textView
changed its font size while I used the same value from getTextSize() method. Can anyone explain?