I am trying to change the font size of string which is displaying on textview. remember there are two string which are displaying on same textview.I want different font size for both string.
String name = shopsArrayList.get(position);
String address = shopsAddress.get(position);
i tried this but it is done on both string,
tv.setText(name.toUpperCase() + "\r\n" + address);
tv.setPadding(25, 15, 0, 0);
tv.setTextSize(25);
please help!!!