Lines Matching refs:vh
218 ViewHolder vh = new ViewHolder(); in newView() local
219 vh.line1 = (TextView) v.findViewById(R.id.line1); in newView()
220 vh.line2 = (TextView) v.findViewById(R.id.line2); in newView()
221 vh.duration = (TextView) v.findViewById(R.id.duration); in newView()
222 vh.radio = (RadioButton) v.findViewById(R.id.radio); in newView()
223 vh.play_indicator = (ImageView) v.findViewById(R.id.play_indicator); in newView()
224 vh.buffer1 = new CharArrayBuffer(100); in newView()
225 vh.buffer2 = new char[200]; in newView()
226 v.setTag(vh); in newView()
232 ViewHolder vh = (ViewHolder) view.getTag(); in bindView() local
234 cursor.copyStringToBuffer(mTitleIdx, vh.buffer1); in bindView()
235 vh.line1.setText(vh.buffer1.data, 0, vh.buffer1.sizeCopied); in bindView()
239 vh.duration.setText(""); in bindView()
241 vh.duration.setText(MusicUtils.makeTimeString(context, secs)); in bindView()
261 if (vh.buffer2.length < len) { in bindView()
262 vh.buffer2 = new char[len]; in bindView()
264 builder.getChars(0, len, vh.buffer2, 0); in bindView()
265 vh.line2.setText(vh.buffer2, 0, len); in bindView()
272 vh.radio.setChecked(id == mSelectedId); in bindView()
278 ImageView iv = vh.play_indicator; in bindView()