Skip to content
Snippets Groups Projects
Commit c28533bf authored by Geoffrey Métais's avatar Geoffrey Métais
Browse files

Fix mediaInfo

parent c1f11bfb
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ public class MediaInfoAdapter extends ArrayAdapter<Media.Track> {
v = inflater.inflate(R.layout.list_item, parent, false);
holder = new ViewHolder();
holder.title = (TextView) v.findViewById(R.id.title);
holder.text = (TextView) v.findViewById(R.id.artist);
holder.text = (TextView) v.findViewById(R.id.subtitle);
v.setTag(holder);
} else
holder = (ViewHolder) v.getTag();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment