So is it possible to change text size of part of the text in textview dynamically Let's say we have a method that does that...what am I missing...I want to make x variable twice as big as y...they are string btw...
private void Data_transfer() {
    test3.setText( x + "   " + y);
    }
 
     
     
    