9
Tamaño de fuente diferente de cadenas en el mismo TextView
Tengo un textViewinterior con un número (variable) y un string, ¿cómo puedo darle al número un tamaño más grande que el string? el código: TextView size = (TextView)convertView.findViewById(R.id.privarea_list_size); if (ls.numProducts != null) { size.setText(ls.numProducts + " " + mContext.getString(R.string.products)); } Quiero que ls.numproducts tenga un tamaño diferente al resto del …