From 63146ec4b79031cf4ef64c40d6ca0ab80faf4470 Mon Sep 17 00:00:00 2001 From: Me on Windows Date: Fri, 18 Jun 2021 22:52:33 +0000 Subject: [PATCH] Add adapter constructor --- QuickPlay/SongRecycler.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/QuickPlay/SongRecycler.cs b/QuickPlay/SongRecycler.cs index a279a2c..ba21b74 100644 --- a/QuickPlay/SongRecycler.cs +++ b/QuickPlay/SongRecycler.cs @@ -14,9 +14,10 @@ namespace QuickPlay { class SongRecyclerAdapter : Android.Support.V7.Widget.RecyclerView.Adapter { + IPlayer player; public SongRecyclerAdapter(IPlayer player) { - throw new NotImplementedException(); + this.player = player; } public override int ItemCount {