J'ai un textView
intérieur avec un nombre (variable) et un string
, comment puis-je donner au numéro une taille plus grande que le string
? le code:
TextView size = (TextView)convertView.findViewById(R.id.privarea_list_size);
if (ls.numProducts != null) {
size.setText(ls.numProducts + " " + mContext.getString(R.string.products));
}
Je veux que ls.numproducts ait une taille différente du reste du texte. Comment faire?