I'm facing to such problem: get data from server and load into TextView. Of course, it's quite simple. But I want to implement it with some new for me approach. I started digging in RxJava, but found that it isn't used usually for such simple tasks and applied for operating more complex flows of data. Am I right? What are best practices for my task?
So I implemented it with Retrofit, but also I've seen that there is a tight relation between Rx and Retrofit. Second one used for interaction with Net and Rx let's operate data asynchronously in general?
Can you explain me please difference between these frameworks and how there are usually used?
Thanks everyone for answers in advance!