今、私はこのコードを持っています:
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>
put the textApparence のインスタンスですandroid:textAppearance="?android:attr/textAppearanceSmall"
。これどうやってするの?