Home | History | Annotate | Download | only in music

Lines Matching refs:vh

641             ViewHolder vh = new ViewHolder();
642 vh.line1 = (TextView) v.findViewById(R.id.line1);
643 vh.line2 = (TextView) v.findViewById(R.id.line2);
644 vh.play_indicator = (ImageView) v.findViewById(R.id.play_indicator);
645 vh.icon = (ImageView) v.findViewById(R.id.icon);
646 vh.icon.setPadding(0, 0, 1, 0);
647 v.setTag(vh);
655 ViewHolder vh = new ViewHolder();
656 vh.line1 = (TextView) v.findViewById(R.id.line1);
657 vh.line2 = (TextView) v.findViewById(R.id.line2);
658 vh.play_indicator = (ImageView) v.findViewById(R.id.play_indicator);
659 vh.icon = (ImageView) v.findViewById(R.id.icon);
660 vh.icon.setBackgroundDrawable(mDefaultAlbumIcon);
661 vh.icon.setPadding(0, 0, 1, 0);
662 v.setTag(vh);
669 ViewHolder vh = (ViewHolder) view.getTag();
677 vh.line1.setText(displayartist);
685 vh.line2.setText(songs_albums);
690 vh.play_indicator.setImageDrawable(mNowPlayingOverlay);
692 vh.play_indicator.setImageDrawable(null);
699 ViewHolder vh = (ViewHolder) view.getTag();
707 vh.line1.setText(displayname);
733 vh.line2.setText(builder.toString());
735 ImageView iv = vh.icon;
751 iv = vh.play_indicator;