Home | History | Annotate | Download | only in music

Lines Matching refs:vh

1456             ViewHolder vh = new ViewHolder();
1457 vh.line1 = (TextView) v.findViewById(R.id.line1);
1458 vh.line2 = (TextView) v.findViewById(R.id.line2);
1459 vh.duration = (TextView) v.findViewById(R.id.duration);
1460 vh.play_indicator = (ImageView) v.findViewById(R.id.play_indicator);
1461 vh.buffer1 = new CharArrayBuffer(100);
1462 vh.buffer2 = new char[200];
1463 v.setTag(vh);
1470 ViewHolder vh = (ViewHolder) view.getTag();
1472 cursor.copyStringToBuffer(mTitleIdx, vh.buffer1);
1473 vh.line1.setText(vh.buffer1.data, 0, vh.buffer1.sizeCopied);
1477 vh.duration.setText("");
1479 vh.duration.setText(MusicUtils.makeTimeString(context, secs));
1492 if (vh.buffer2.length < len) {
1493 vh.buffer2 = new char[len];
1495 builder.getChars(0, len, vh.buffer2, 0);
1496 vh.line2.setText(vh.buffer2, 0, len);
1498 ImageView iv = vh.play_indicator;