[https://medium.com/remotepanda-blog/transparent-sections-in-a-view-in-android-3353545982e7]
Tag: UI/UX
From design to android
RecyclerView animated transition between Grid and List layouts
RecyclerView.setAdapter(null)
(Deprecated) Why you should call setAdapter(null)
[https://ene.im/2017/06/03/Why-you-should-call-setAdapter-null/]
RecyclerView doesn’t unregister itself from the adapter on orientation change
[https://stackoverflow.com/questions/30132643/recyclerview-doesnt-unregister-itself-from-the-adapter-on-orientation-change]
Android – Timer, update UI
http://qaru.site/questions/342385/how-to-change-a-textview-every-second-in-android
[code language=”java”]
Timer timer = new Timer();
timer.scheduleAtFixedRate(new TimerTask()
{
public void run()
{
//your code
}
}, delay, period);
[/code]
How to Update the UI in an Android Activity Using Data from a Background Service
https://android-developers.googleblog.com/2007/11/stitch-in-time.html