我有一个 ListView,我设法在上面显示了许多文本。一些文本被格式化为BOLD。为了使这些文本加粗,我使用了 Spannable 并且它有效!但是,当我再次向下和向上滚动时,索引 [0] 变为多个。
为了避免那个场景,我使用了一个支架来固定我的 TextView。我设法在滚动中解决了这个问题,但由于某些原因,粗体的文本样式在我的 ListView 中消失了。我怎样才能做到这一点?
MainActivity.java
private void populateListView() {
String[] source = { "Lorem ipsum dolor sit amet", "consectetuer adipiscing elit",
"sed diam nonummy nibh " };
final SpannableString out0 = new SpannableString(source[0]);
final SpannableString out2 = new SpannableString(source[2]);
StyleSpan boldSpan = new StyleSpan(Typeface.BOLD);
out0.setSpan(boldSpan, 6, 17, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
out2.setSpan(boldSpan, 0, 8, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
R.layout.items, // Layout to use (create)
source) { // Items to be displayed
public View getView(int position, View convertView, ViewGroup parent) {
View v = super.getView(position, convertView, parent);
try {
viewHolder.tv = (TextView) lv_procedures.getChildAt(0)
.findViewById(R.id.lbl_item);
viewHolder.tv_2 = (TextView) lv_procedures.getChildAt(2)
.findViewById(R.id.lbl_item);
viewHolder.tv.setText(out0);
viewHolder.tv_2.setText(out2);
} catch (Exception e) {
e.printStackTrace();
}
return v;
}
};
}
类视图持有者
private class ViewHolder {
TextView tv;
TextView tv_2;
}