Closed ghost closed 5 years ago
I tried implementing zoomy using the documentation and for some reason, I can't implement it inside an adapter, am I doing some error here?
Zoomy.Builder builder = new Zoomy.Builder(AdvancedItemListAdapter.this) .target(holder.mItemImg); builder.register();
Getting that I can't resolve constructor
You need to pass a valid window container (Activity, Dialog...) to Builder constructor. Seems you are passing just the adapter instance.
I tried implementing zoomy using the documentation and for some reason, I can't implement it inside an adapter, am I doing some error here?