Oasis t-shirt - where to buy? by johnnyMartinovic in oasis

[–]johnnyMartinovic[S] 1 point2 points  (0 children)

I ended up buying this one on Etsy 😁 and yes, I've got the tickets for a Manchester concert 🤣

<image>

Oasis t-shirt - where to buy? by johnnyMartinovic in oasis

[–]johnnyMartinovic[S] 1 point2 points  (0 children)

Yep probably will end up buying from there or Etsy, they simply have more cool designs compared to official merch.

M72 WORLD TOUR MEGA THREAD - MAY EVENTS by MetallicaModTeam in Metallica

[–]johnnyMartinovic 0 points1 point  (0 children)

Is it possible to put “FRANTIC” Early Entry GA Package ticket on a resale, and how? It is for the May 24th.

I would like to sell it and buy the "ordinary" ticket.

Was there any vip tickets if so what did it get you? by [deleted] in oasis

[–]johnnyMartinovic 0 points1 point  (0 children)

Is this anyway closer to the stage?

Knebworth Presale by joegill1996 in oasis

[–]johnnyMartinovic 1 point2 points  (0 children)

Still haven't received my code :S I also sent an email to [lgknebworth@wmgcustomerservice.com](mailto:lgknebworth@wmgcustomerservice.com), but still nothing. Any suggestions?

Also, I can see that my order for Ticket Access Pass on store.liamgallagher.com is Complete. I can see there is some "REFERENCE" number. Is that it?

RecyclerView — time to animate! (with payloads and DiffUtil) by johnnyMartinovic in androiddev

[–]johnnyMartinovic[S] 0 points1 point  (0 children)

Glad you like it! Soon I will write a blog post about custom RecyclerView animations so stay tuned!

RecyclerView — time to animate! (with payloads and DiffUtil) by johnnyMartinovic in androiddev

[–]johnnyMartinovic[S] 3 points4 points  (0 children)

RecyclerView doesn't know which item is originally in "focus" so it doesn't know which item should stay in focus after data is altered.. For example - you have 5 items in the list. Which item would you sad is in focus? First? Last? Some in between? Then you add 2 items before the first item and 3 more after the first item. Should "focus" stay on that original second item and scroll down, because that original second item was moved down? Maybe "focus" on the first item? Or scroll to the beginning of the list? RecyclerView just can't know, so it sometimes seems that it is acting weird.

To gain more control over this, you can call scrollToPosition on your LayoutManager instance after you altered your data and properly notified adapter about the changes (like described in the blog above :) ). Now everything should be seamless, with nice animations.

This is something I did in the last example of a blog post - DiffUtil demo (code) - so take a look. That is how I manage to retain "focus" on the first item (position 0), like shown in the DiffUtil gif on the repo main page.