mirror of
https://github.com/zoriya/Opus.git
synced 2025-12-06 06:26:15 +00:00
28 lines
941 B
C#
28 lines
941 B
C#
using Android.Views;
|
|
using Android.Widget;
|
|
|
|
namespace MusicApp.Resources.values
|
|
{
|
|
[System.Serializable]
|
|
public class Holder
|
|
{
|
|
public ImageView reorder;
|
|
public LinearLayout textLayout;
|
|
public TextView Title;
|
|
public TextView Artist;
|
|
public ImageView AlbumArt;
|
|
public ImageView youtubeIcon;
|
|
public ImageView more;
|
|
|
|
public Holder(View v)
|
|
{
|
|
reorder = v.FindViewById<ImageView>(Resource.Id.reorder);
|
|
textLayout = v.FindViewById<LinearLayout>(Resource.Id.textLayout);
|
|
Title = v.FindViewById<TextView>(Resource.Id.title);
|
|
Artist = v.FindViewById<TextView>(Resource.Id.artist);
|
|
AlbumArt = v.FindViewById<ImageView>(Resource.Id.albumArt);
|
|
youtubeIcon = v.FindViewById<ImageView>(Resource.Id.youtubeIcon);
|
|
more = v.FindViewById<ImageView>(Resource.Id.moreButton);
|
|
}
|
|
}
|
|
} |