现在我有这个代码:
TextView textView = (TextView) convertView.findViewById(R.id.label);
String html = name + " - <small>" + description + "</small>";
textView.setText(Html.fromHtml(html));
textView 在哪里有android:textAppearance="?android:attr/textAppearanceLarge"
. 但我需要的是<small>
放置 textApparence的实例android:textAppearance="?android:attr/textAppearanceSmall"
。我怎样才能做到这一点?