Say i have textview
size is 18sp
, if textview
goes to second line, how to reduce textview
size?
any idea?
TextView text= (TextView)findViewById(R.id.text);
text.setTextSize(18);
//how to reduce text size if text goes to second line when it's too large?
Thanks in advance